pub struct Timebase {
pub upper_32: u32,
pub lower_32: u32,
}Expand description
A 64-bit timestamp from a high-resolution, monotonic hardware clock.
Fields§
§upper_32: u32The upper 32 bits of the 64-bit timebase value.
lower_32: u32The lower 32 bits of the 64-bit timebase value.
Implementations§
Trait Implementations§
impl Copy for Timebase
impl Eq for Timebase
impl StructuralPartialEq for Timebase
Auto Trait Implementations§
impl Freeze for Timebase
impl RefUnwindSafe for Timebase
impl Send for Timebase
impl Sync for Timebase
impl Unpin for Timebase
impl UnsafeUnpin for Timebase
impl UnwindSafe for Timebase
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