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