pub struct SpeechSynthesisProviderDescriptor {
pub id: String,
pub name: String,
pub description: Option<String>,
pub auth_type: ProviderAuthType,
pub auth_label: Option<String>,
pub authenticated: bool,
pub auth_detail: Option<String>,
pub recommended: bool,
pub sort_order: i32,
pub capabilities: SpeechSynthesisCapabilities,
pub models: Vec<SpeechSynthesisModelDescriptor>,
}Fields§
§id: String§name: String§description: Option<String>§auth_type: ProviderAuthType§auth_label: Option<String>§authenticated: bool§auth_detail: Option<String>§recommended: bool§sort_order: i32§capabilities: SpeechSynthesisCapabilities§models: Vec<SpeechSynthesisModelDescriptor>Trait Implementations§
Source§impl Clone for SpeechSynthesisProviderDescriptor
impl Clone for SpeechSynthesisProviderDescriptor
Source§fn clone(&self) -> SpeechSynthesisProviderDescriptor
fn clone(&self) -> SpeechSynthesisProviderDescriptor
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<'de> Deserialize<'de> for SpeechSynthesisProviderDescriptor
impl<'de> Deserialize<'de> for SpeechSynthesisProviderDescriptor
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
Auto Trait Implementations§
impl Freeze for SpeechSynthesisProviderDescriptor
impl RefUnwindSafe for SpeechSynthesisProviderDescriptor
impl Send for SpeechSynthesisProviderDescriptor
impl Sync for SpeechSynthesisProviderDescriptor
impl Unpin for SpeechSynthesisProviderDescriptor
impl UnsafeUnpin for SpeechSynthesisProviderDescriptor
impl UnwindSafe for SpeechSynthesisProviderDescriptor
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