pub struct TranscriptTextDoneEvent {
pub type: String,
pub text: String,
pub logprobs: Vec<TranscriptTextDoneEvent_Logprobs>,
}Expand description
Emitted when the transcription is complete.
Fields§
§type: StringThe type of the event.
text: StringThe text that was transcribed.
logprobs: Vec<TranscriptTextDoneEvent_Logprobs>The log probabilities of the individual tokens in the transcription.
Trait Implementations§
Source§impl Clone for TranscriptTextDoneEvent
impl Clone for TranscriptTextDoneEvent
Source§fn clone(&self) -> TranscriptTextDoneEvent
fn clone(&self) -> TranscriptTextDoneEvent
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 moreAuto Trait Implementations§
impl Freeze for TranscriptTextDoneEvent
impl RefUnwindSafe for TranscriptTextDoneEvent
impl Send for TranscriptTextDoneEvent
impl Sync for TranscriptTextDoneEvent
impl Unpin for TranscriptTextDoneEvent
impl UnwindSafe for TranscriptTextDoneEvent
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