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