#[non_exhaustive]pub enum VoiceName {
Known(VoiceNameKnown),
Unknown(String),
}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.
Known(VoiceNameKnown)
Unknown(String)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VoiceName
impl<'de> Deserialize<'de> for VoiceName
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for VoiceName
impl StructuralPartialEq for VoiceName
Auto Trait Implementations§
impl Freeze for VoiceName
impl RefUnwindSafe for VoiceName
impl Send for VoiceName
impl Sync for VoiceName
impl Unpin for VoiceName
impl UnsafeUnpin for VoiceName
impl UnwindSafe for VoiceName
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