pub struct TranscriptDeltaEvent {
pub session_id: String,
pub channel_name: String,
pub data: EventData,
pub delta: String,
pub start_ms: Option<f64>,
pub end_ms: Option<f64>,
}Fields§
§session_id: String§channel_name: String§data: EventData§delta: String§start_ms: Option<f64>§end_ms: Option<f64>Trait Implementations§
Source§impl Clone for TranscriptDeltaEvent
impl Clone for TranscriptDeltaEvent
Source§fn clone(&self) -> TranscriptDeltaEvent
fn clone(&self) -> TranscriptDeltaEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TranscriptDeltaEvent
impl RefUnwindSafe for TranscriptDeltaEvent
impl Send for TranscriptDeltaEvent
impl Sync for TranscriptDeltaEvent
impl Unpin for TranscriptDeltaEvent
impl UnsafeUnpin for TranscriptDeltaEvent
impl UnwindSafe for TranscriptDeltaEvent
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