pub enum SpeechVoice {
Named(VoiceName),
Custom(CustomVoice),
Raw(Value),
}Variants§
Trait Implementations§
Source§impl Clone for SpeechVoice
impl Clone for SpeechVoice
Source§fn clone(&self) -> SpeechVoice
fn clone(&self) -> SpeechVoice
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 SpeechVoice
impl Debug for SpeechVoice
Source§impl<'de> Deserialize<'de> for SpeechVoice
impl<'de> Deserialize<'de> for SpeechVoice
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
Source§impl PartialEq for SpeechVoice
impl PartialEq for SpeechVoice
Source§impl Serialize for SpeechVoice
impl Serialize for SpeechVoice
impl StructuralPartialEq for SpeechVoice
Auto Trait Implementations§
impl Freeze for SpeechVoice
impl RefUnwindSafe for SpeechVoice
impl Send for SpeechVoice
impl Sync for SpeechVoice
impl Unpin for SpeechVoice
impl UnsafeUnpin for SpeechVoice
impl UnwindSafe for SpeechVoice
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