pub(crate) struct SeqClock {
origin: Instant,
sent_ns: Mutex<HashMap<u64, u64>>,
}Expand description
Wall origin plus per-sequence offsets in nanoseconds.
Fields§
§origin: Instant§sent_ns: Mutex<HashMap<u64, u64>>Implementations§
Auto Trait Implementations§
impl !Freeze for SeqClock
impl RefUnwindSafe for SeqClock
impl Send for SeqClock
impl Sync for SeqClock
impl Unpin for SeqClock
impl UnwindSafe for SeqClock
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