pub struct AudioOutput {
pub format: Option<RealtimeAudioFormats>,
pub voice: Option<String>,
}Fields§
§format: Option<RealtimeAudioFormats>The format of the output audio.
voice: Option<String>The voice the model uses to respond.
Trait Implementations§
Source§impl Clone for AudioOutput
impl Clone for AudioOutput
Source§fn clone(&self) -> AudioOutput
fn clone(&self) -> AudioOutput
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 AudioOutput
impl Debug for AudioOutput
Source§impl<'de> Deserialize<'de> for AudioOutput
impl<'de> Deserialize<'de> for AudioOutput
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 AudioOutput
impl RefUnwindSafe for AudioOutput
impl Send for AudioOutput
impl Sync for AudioOutput
impl Unpin for AudioOutput
impl UnsafeUnpin for AudioOutput
impl UnwindSafe for AudioOutput
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