pub struct OutputAudio {
pub type: String,
pub data: String,
pub transcript: String,
}
Expand description
An audio output from the model.
Fields§
§type: String
The type of the output audio.
data: String
Base64-encoded audio data from the model.
transcript: String
The transcript of the audio data from the model.
Trait Implementations§
Source§impl Clone for OutputAudio
impl Clone for OutputAudio
Source§fn clone(&self) -> OutputAudio
fn clone(&self) -> OutputAudio
Returns a copy 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 OutputAudio
impl Debug for OutputAudio
Source§impl Default for OutputAudio
impl Default for OutputAudio
Source§fn default() -> OutputAudio
fn default() -> OutputAudio
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OutputAudio
impl RefUnwindSafe for OutputAudio
impl Send for OutputAudio
impl Sync for OutputAudio
impl Unpin for OutputAudio
impl UnwindSafe for OutputAudio
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