pub enum Voice {
Show 15 variants
Alloy,
Ash,
Ballad,
Coral,
Echo,
Fable,
Onyx,
Nova,
Sage,
Shimmer,
Verse,
Marin,
Cedar,
Custom(CustomVoiceRef),
Other(String),
}Available on crate feature
audio-types only.Variants§
Alloy
Ash
Ballad
Coral
Echo
Fable
Onyx
Nova
Sage
Shimmer
Verse
Marin
Cedar
Custom(CustomVoiceRef)
A custom voice reference with an id field.
Other(String)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Voice
impl<'de> Deserialize<'de> for Voice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Voice
Auto Trait Implementations§
impl Freeze for Voice
impl RefUnwindSafe for Voice
impl Send for Voice
impl Sync for Voice
impl Unpin for Voice
impl UnsafeUnpin for Voice
impl UnwindSafe for Voice
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