pub struct HostClock {
pub seconds: i32,
pub micros: i32,
}Expand description
Host clock value in seconds and microseconds.
Fields§
§seconds: i32Seconds since the host defined epoch.
micros: i32Microseconds within the current second.
Trait Implementations§
impl Copy for HostClock
impl Eq for HostClock
impl StructuralPartialEq for HostClock
Auto Trait Implementations§
impl Freeze for HostClock
impl RefUnwindSafe for HostClock
impl Send for HostClock
impl Sync for HostClock
impl Unpin for HostClock
impl UnsafeUnpin for HostClock
impl UnwindSafe for HostClock
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