pub struct MonotonicInstant(/* private fields */);Expand description
One finite sample of the runtime monotonic clock.
Implementations§
Source§impl MonotonicInstant
impl MonotonicInstant
Sourcepub const fn from_nanos(now_ns: u64) -> Option<Self>
pub const fn from_nanos(now_ns: u64) -> Option<Self>
Validates one sample against the signed ktime_t domain.
Sourcepub const fn reached(self, deadline: MonotonicDeadline) -> bool
pub const fn reached(self, deadline: MonotonicDeadline) -> bool
Reports whether an absolute monotonic deadline has elapsed.
Sourcepub fn deadline_after(self, timeout: Duration) -> MonotonicDeadline
pub fn deadline_after(self, timeout: Duration) -> MonotonicDeadline
Adds a relative timeout with Linux ktime_add_safe() saturation.
Trait Implementations§
Source§impl Clone for MonotonicInstant
impl Clone for MonotonicInstant
Source§fn clone(&self) -> MonotonicInstant
fn clone(&self) -> MonotonicInstant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MonotonicInstant
Source§impl Debug for MonotonicInstant
impl Debug for MonotonicInstant
impl Eq for MonotonicInstant
Source§impl Ord for MonotonicInstant
impl Ord for MonotonicInstant
Source§fn cmp(&self, other: &MonotonicInstant) -> Ordering
fn cmp(&self, other: &MonotonicInstant) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for MonotonicInstant
impl PartialEq for MonotonicInstant
Source§impl PartialOrd for MonotonicInstant
impl PartialOrd for MonotonicInstant
impl StructuralPartialEq for MonotonicInstant
Auto Trait Implementations§
impl Freeze for MonotonicInstant
impl RefUnwindSafe for MonotonicInstant
impl Send for MonotonicInstant
impl Sync for MonotonicInstant
impl Unpin for MonotonicInstant
impl UnsafeUnpin for MonotonicInstant
impl UnwindSafe for MonotonicInstant
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