pub struct TranscriptEvent {
pub timestamp: Duration,
pub event_type: EventType,
pub data: Vec<u8>,
}Expand description
A transcript event.
Fields§
§timestamp: DurationTimestamp from start.
event_type: EventTypeEvent type.
data: Vec<u8>Event data.
Implementations§
Trait Implementations§
Source§impl Clone for TranscriptEvent
impl Clone for TranscriptEvent
Source§fn clone(&self) -> TranscriptEvent
fn clone(&self) -> TranscriptEvent
Returns a duplicate 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 TranscriptEvent
impl RefUnwindSafe for TranscriptEvent
impl Send for TranscriptEvent
impl Sync for TranscriptEvent
impl Unpin for TranscriptEvent
impl UnwindSafe for TranscriptEvent
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