pub struct SynthesisVoice {
pub name: String,
pub language: Option<String>,
pub dialect: Option<String>,
}
Expand description
Synthesis voice
Fields§
§name: String
§language: Option<String>
§dialect: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for SynthesisVoice
impl Clone for SynthesisVoice
Source§fn clone(&self) -> SynthesisVoice
fn clone(&self) -> SynthesisVoice
Returns a duplicate of the value. Read more
1.0.0 · 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 SynthesisVoice
impl Debug for SynthesisVoice
Source§impl FromStr for SynthesisVoice
impl FromStr for SynthesisVoice
Source§type Err = ClientError
type Err = ClientError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<SynthesisVoice, <SynthesisVoice as FromStr>::Err>
fn from_str(s: &str) -> Result<SynthesisVoice, <SynthesisVoice as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl Hash for SynthesisVoice
impl Hash for SynthesisVoice
Source§impl PartialEq for SynthesisVoice
impl PartialEq for SynthesisVoice
impl Eq for SynthesisVoice
impl StructuralPartialEq for SynthesisVoice
Auto Trait Implementations§
impl Freeze for SynthesisVoice
impl RefUnwindSafe for SynthesisVoice
impl Send for SynthesisVoice
impl Sync for SynthesisVoice
impl Unpin for SynthesisVoice
impl UnwindSafe for SynthesisVoice
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