pub struct SpeechProviderDescriptor {
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: SpeechCapabilities,
pub models: Vec<SpeechModelDescriptor>,
}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: SpeechCapabilities§models: Vec<SpeechModelDescriptor>Trait Implementations§
Source§impl Clone for SpeechProviderDescriptor
impl Clone for SpeechProviderDescriptor
Source§fn clone(&self) -> SpeechProviderDescriptor
fn clone(&self) -> SpeechProviderDescriptor
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 SpeechProviderDescriptor
impl Debug for SpeechProviderDescriptor
Source§impl<'de> Deserialize<'de> for SpeechProviderDescriptor
impl<'de> Deserialize<'de> for SpeechProviderDescriptor
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 SpeechProviderDescriptor
impl RefUnwindSafe for SpeechProviderDescriptor
impl Send for SpeechProviderDescriptor
impl Sync for SpeechProviderDescriptor
impl Unpin for SpeechProviderDescriptor
impl UnsafeUnpin for SpeechProviderDescriptor
impl UnwindSafe for SpeechProviderDescriptor
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