pub struct MonotonicInstant(/* private fields */);
Expand description
Some monotonic, ever increasing, instant in time. Cannot be manipulated and is only good for comparing elapsed time.
Implementations§
Source§impl MonotonicInstant
impl MonotonicInstant
pub const ZERO: MonotonicInstant
Sourcepub fn elapsed(self) -> Duration
pub fn elapsed(self) -> Duration
Get the time that has passed since this instant
Will always yield a valid Duration
and never panic
Sourcepub fn as_instant(self) -> Instant
pub fn as_instant(self) -> Instant
Converts this MonotonicInstant
into a regular Instant
Trait Implementations§
Source§impl Clone for MonotonicInstant
impl Clone for MonotonicInstant
Source§fn clone(&self) -> MonotonicInstant
fn clone(&self) -> MonotonicInstant
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MonotonicInstant
impl Debug for MonotonicInstant
Source§impl Hash for MonotonicInstant
impl Hash 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 · 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
Source§impl PartialEq for MonotonicInstant
impl PartialEq for MonotonicInstant
Source§impl PartialOrd for MonotonicInstant
impl PartialOrd for MonotonicInstant
impl Copy for MonotonicInstant
impl Eq 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 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