Struct smoltcp::time::Instant

source ·
pub struct Instant { /* private fields */ }
Expand description

A representation of an absolute time value.

The Instant type is a wrapper around a i64 value that represents a number of microseconds, monotonically increasing since an arbitrary moment in time, such as system startup.

  • A value of 0 is inherently arbitrary.
  • A value less than 0 indicates a time before the starting point.

Implementations§

source§

impl Instant

source

pub const ZERO: Instant = _

source

pub fn from_micros<T: Into<i64>>(micros: T) -> Instant

Create a new Instant from a number of microseconds.

source

pub const fn from_micros_const(micros: i64) -> Instant

source

pub fn from_millis<T: Into<i64>>(millis: T) -> Instant

Create a new Instant from a number of milliseconds.

source

pub const fn from_millis_const(millis: i64) -> Instant

Create a new Instant from a number of milliseconds.

source

pub fn from_secs<T: Into<i64>>(secs: T) -> Instant

Create a new Instant from a number of seconds.

source

pub const fn millis(&self) -> i64

The fractional number of milliseconds that have passed since the beginning of time.

source

pub const fn micros(&self) -> i64

The fractional number of microseconds that have passed since the beginning of time.

source

pub const fn secs(&self) -> i64

The number of whole seconds that have passed since the beginning of time.

source

pub const fn total_millis(&self) -> i64

The total number of milliseconds that have passed since the beginning of time.

source

pub const fn total_micros(&self) -> i64

The total number of milliseconds that have passed since the beginning of time.

Trait Implementations§

source§

impl Add<Duration> for Instant

source§

type Output = Instant

The resulting type after applying the + operator.
source§

fn add(self, rhs: Duration) -> Instant

Performs the + operation. Read more
source§

impl AddAssign<Duration> for Instant

source§

fn add_assign(&mut self, rhs: Duration)

Performs the += operation. Read more
source§

impl Clone for Instant

source§

fn clone(&self) -> Instant

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Instant

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Instant

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Ord for Instant

source§

fn cmp(&self, other: &Instant) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Instant

source§

fn eq(&self, other: &Instant) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Instant

source§

fn partial_cmp(&self, other: &Instant) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Sub<Duration> for Instant

source§

type Output = Instant

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Duration) -> Instant

Performs the - operation. Read more
source§

impl Sub for Instant

source§

type Output = Duration

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Instant) -> Duration

Performs the - operation. Read more
source§

impl SubAssign<Duration> for Instant

source§

fn sub_assign(&mut self, rhs: Duration)

Performs the -= operation. Read more
source§

impl Copy for Instant

source§

impl Eq for Instant

source§

impl StructuralPartialEq for Instant

Auto Trait Implementations§

§

impl Freeze for Instant

§

impl RefUnwindSafe for Instant

§

impl Send for Instant

§

impl Sync for Instant

§

impl Unpin for Instant

§

impl UnwindSafe for Instant

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> ToString for T
where T: Display + ?Sized,

§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.