pub struct TranscriptTextDeltaEvent {
pub type: String,
pub delta: String,
pub logprobs: Vec<TranscriptTextDeltaEvent_Logprobs>,
}Expand description
Emitted when there is an additional text delta.
Fields§
§type: StringThe type of the event.
delta: StringThe text delta that was additionally transcribed.
logprobs: Vec<TranscriptTextDeltaEvent_Logprobs>The log probabilities of the delta.
Trait Implementations§
Source§impl Clone for TranscriptTextDeltaEvent
impl Clone for TranscriptTextDeltaEvent
Source§fn clone(&self) -> TranscriptTextDeltaEvent
fn clone(&self) -> TranscriptTextDeltaEvent
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 TranscriptTextDeltaEvent
impl RefUnwindSafe for TranscriptTextDeltaEvent
impl Send for TranscriptTextDeltaEvent
impl Sync for TranscriptTextDeltaEvent
impl Unpin for TranscriptTextDeltaEvent
impl UnwindSafe for TranscriptTextDeltaEvent
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