pub struct ResponseAudioTranscriptDeltaEvent {
pub type: String,
pub delta: String,
}
Expand description
Emitted when there is a partial transcript of audio.
Fields§
§type: String
The type of the event.
delta: String
The partial transcript of the audio response.
Trait Implementations§
Source§impl Clone for ResponseAudioTranscriptDeltaEvent
impl Clone for ResponseAudioTranscriptDeltaEvent
Source§fn clone(&self) -> ResponseAudioTranscriptDeltaEvent
fn clone(&self) -> ResponseAudioTranscriptDeltaEvent
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 Default for ResponseAudioTranscriptDeltaEvent
impl Default for ResponseAudioTranscriptDeltaEvent
Source§fn default() -> ResponseAudioTranscriptDeltaEvent
fn default() -> ResponseAudioTranscriptDeltaEvent
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResponseAudioTranscriptDeltaEvent
impl RefUnwindSafe for ResponseAudioTranscriptDeltaEvent
impl Send for ResponseAudioTranscriptDeltaEvent
impl Sync for ResponseAudioTranscriptDeltaEvent
impl Unpin for ResponseAudioTranscriptDeltaEvent
impl UnwindSafe for ResponseAudioTranscriptDeltaEvent
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