pub enum VoiceGender {
Female,
Male,
Neutral,
}Expand description
Specifies the gender of a voice.
Variants§
Trait Implementations§
Source§impl Debug for VoiceGender
impl Debug for VoiceGender
Source§impl<'_derivative_strum> From<&'_derivative_strum VoiceGender> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum VoiceGender> for &'static str
Source§fn from(x: &'_derivative_strum VoiceGender) -> &'static str
fn from(x: &'_derivative_strum VoiceGender) -> &'static str
Converts to this type from the input type.
Source§impl From<VoiceGender> for &'static str
impl From<VoiceGender> for &'static str
Source§fn from(x: VoiceGender) -> &'static str
fn from(x: VoiceGender) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for VoiceGender
impl FromStr for VoiceGender
Auto Trait Implementations§
impl Freeze for VoiceGender
impl RefUnwindSafe for VoiceGender
impl Send for VoiceGender
impl Sync for VoiceGender
impl Unpin for VoiceGender
impl UnwindSafe for VoiceGender
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