#[repr(C)]pub enum VoiceType {
Male1 = 1,
Male2 = 2,
Male3 = 3,
Female1 = 4,
Female2 = 5,
Female3 = 6,
ChildMale = 7,
ChildFemale = 8,
Unspecified = -1,
}Expand description
Symbolic voice type
These values are approximations for human display, output modules are free to interpret their meanings in any way they consider sensible.
Variants§
Male1 = 1
Male2 = 2
Male3 = 3
Female1 = 4
Female2 = 5
Female3 = 6
ChildMale = 7
ChildFemale = 8
Unspecified = -1
Trait Implementations§
impl Copy for VoiceType
impl Eq for VoiceType
impl StructuralPartialEq for VoiceType
Auto Trait Implementations§
impl Freeze for VoiceType
impl RefUnwindSafe for VoiceType
impl Send for VoiceType
impl Sync for VoiceType
impl Unpin for VoiceType
impl UnsafeUnpin for VoiceType
impl UnwindSafe for VoiceType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more