Struct tiny_std::time::MonotonicInstant
source · 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§fn eq(&self, other: &MonotonicInstant) -> bool
fn eq(&self, other: &MonotonicInstant) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for MonotonicInstant
impl PartialOrd for MonotonicInstant
source§fn partial_cmp(&self, other: &MonotonicInstant) -> Option<Ordering>
fn partial_cmp(&self, other: &MonotonicInstant) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for MonotonicInstant
impl Eq for MonotonicInstant
impl StructuralEq for MonotonicInstant
impl StructuralPartialEq for MonotonicInstant
Auto Trait Implementations§
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