Struct ssip_client_async::SynthesisVoice
source · 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 copy 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
§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
source§fn eq(&self, other: &SynthesisVoice) -> bool
fn eq(&self, other: &SynthesisVoice) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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