pub struct Pronunciation {
pub pronunciation: String,
}Available on crate feature
tts only.Expand description
Holds the pronunciation of some text
Fields§
§pronunciation: StringThe pronunciation of the specified text in the requested voice and format. If a custom model is specified, the pronunciation also reflects that custom model
Trait Implementations§
Source§impl Clone for Pronunciation
impl Clone for Pronunciation
Source§fn clone(&self) -> Pronunciation
fn clone(&self) -> Pronunciation
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 Pronunciation
impl Debug for Pronunciation
Source§impl Default for Pronunciation
impl Default for Pronunciation
Source§fn default() -> Pronunciation
fn default() -> Pronunciation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Pronunciation
impl<'de> Deserialize<'de> for Pronunciation
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 Pronunciation
impl PartialEq for Pronunciation
Source§impl Serialize for Pronunciation
impl Serialize for Pronunciation
impl Eq for Pronunciation
impl StructuralPartialEq for Pronunciation
Auto Trait Implementations§
impl Freeze for Pronunciation
impl RefUnwindSafe for Pronunciation
impl Send for Pronunciation
impl Sync for Pronunciation
impl Unpin for Pronunciation
impl UnwindSafe for Pronunciation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.