pub struct Bound {
pub earliest: u64,
pub latest: u64,
}
Expand description
A structure for containing the error bounds returned from ClockBoundD. The values represent the time since the Unix Epoch in nanoseconds.
Fields§
§earliest: u64
System time minus the error calculated from chrony in nanoseconds since the Unix Epoch
latest: u64
System time plus the error calculated from chrony in nanoseconds since the Unix Epoch
Auto Trait Implementations§
impl Freeze for Bound
impl RefUnwindSafe for Bound
impl Send for Bound
impl Sync for Bound
impl Unpin for Bound
impl UnwindSafe for Bound
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