pub struct TranscriptTextDoneEvent {
pub type: String,
pub text: String,
pub logprobs: Option<Vec<TranscriptTextDoneEvent_Logprobs>>,
}
Expand description
Emitted when the transcription is complete.
Fields§
§type: String
The type of the event.
text: String
The text that was transcribed.
logprobs: Option<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 moreSource§impl Debug for TranscriptTextDoneEvent
impl Debug for TranscriptTextDoneEvent
Source§impl Default for TranscriptTextDoneEvent
impl Default for TranscriptTextDoneEvent
Source§fn default() -> TranscriptTextDoneEvent
fn default() -> TranscriptTextDoneEvent
Returns the “default value” for a type. Read more
Auto 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