pub struct TimestampedRecord {
pub record: Record,
pub offset_ms: u64,
}Expand description
A parsed record with timing information for replay.
Fields§
§record: RecordThe original record.
offset_ms: u64Offset from session start in milliseconds.
Trait Implementations§
Source§impl Clone for TimestampedRecord
impl Clone for TimestampedRecord
Source§fn clone(&self) -> TimestampedRecord
fn clone(&self) -> TimestampedRecord
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 TimestampedRecord
impl RefUnwindSafe for TimestampedRecord
impl Send for TimestampedRecord
impl Sync for TimestampedRecord
impl Unpin for TimestampedRecord
impl UnsafeUnpin for TimestampedRecord
impl UnwindSafe for TimestampedRecord
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