pub struct OutputAudio {
pub data: String,
pub transcript: String,
pub _type: String,
}
Fields§
§data: String
Base64-encoded audio data from the model.
transcript: String
The transcript of the audio data from the model.
_type: String
The type of the output audio. Always output_audio
.
Trait Implementations§
Source§impl Debug for OutputAudio
impl Debug for OutputAudio
Source§impl<'de> Deserialize<'de> for OutputAudio
impl<'de> Deserialize<'de> for OutputAudio
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 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