pub struct X86Timestamp;
Trait Implementations§
Source§impl TimestampProvider for X86Timestamp
impl TimestampProvider for X86Timestamp
Source§type TimestampType = u64
type TimestampType = u64
Numeric timestamp type, can be either u32 or u64.
Source§fn now() -> Self::TimestampType
fn now() -> Self::TimestampType
Returns current timestamp from provider.
Source§const TIMESTAMP_VALID_BITS: u8 = _
const TIMESTAMP_VALID_BITS: u8 = _
Define how many bits are valid in timestamp, returned from now(). Other bits are zeroed.
Auto Trait Implementations§
impl Freeze for X86Timestamp
impl RefUnwindSafe for X86Timestamp
impl Send for X86Timestamp
impl Sync for X86Timestamp
impl Unpin for X86Timestamp
impl UnwindSafe for X86Timestamp
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