pub struct AudioOutputConfig {
pub supported: bool,
pub real_time_tts: bool,
pub natural_voice: bool,
pub voice_selection: bool,
}Expand description
Audio output configuration.
Fields§
§supported: bool§real_time_tts: bool§natural_voice: bool§voice_selection: boolTrait Implementations§
Source§impl Clone for AudioOutputConfig
impl Clone for AudioOutputConfig
Source§fn clone(&self) -> AudioOutputConfig
fn clone(&self) -> AudioOutputConfig
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 AudioOutputConfig
impl Debug for AudioOutputConfig
Source§impl Default for AudioOutputConfig
impl Default for AudioOutputConfig
Source§fn default() -> AudioOutputConfig
fn default() -> AudioOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AudioOutputConfig
impl<'de> Deserialize<'de> for AudioOutputConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AudioOutputConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AudioOutputConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AudioOutputConfig
impl Serialize for AudioOutputConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for AudioOutputConfig
impl RefUnwindSafe for AudioOutputConfig
impl Send for AudioOutputConfig
impl Sync for AudioOutputConfig
impl Unpin for AudioOutputConfig
impl UnsafeUnpin for AudioOutputConfig
impl UnwindSafe for AudioOutputConfig
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