#[non_exhaustive]pub enum VoiceNameKnown {
Show 13 variants
Alloy,
Ash,
Ballad,
Coral,
Echo,
Fable,
Nova,
Onyx,
Sage,
Shimmer,
Verse,
Marin,
Cedar,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for VoiceNameKnown
impl Clone for VoiceNameKnown
Source§fn clone(&self) -> VoiceNameKnown
fn clone(&self) -> VoiceNameKnown
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VoiceNameKnown
impl Debug for VoiceNameKnown
Source§impl<'de> Deserialize<'de> for VoiceNameKnown
impl<'de> Deserialize<'de> for VoiceNameKnown
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 Eq for VoiceNameKnown
Source§impl PartialEq for VoiceNameKnown
impl PartialEq for VoiceNameKnown
Source§impl Serialize for VoiceNameKnown
impl Serialize for VoiceNameKnown
impl StructuralPartialEq for VoiceNameKnown
Auto Trait Implementations§
impl Freeze for VoiceNameKnown
impl RefUnwindSafe for VoiceNameKnown
impl Send for VoiceNameKnown
impl Sync for VoiceNameKnown
impl Unpin for VoiceNameKnown
impl UnsafeUnpin for VoiceNameKnown
impl UnwindSafe for VoiceNameKnown
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