Struct Instant
pub struct Instant { /* private fields */ }Expand description
An Instant in time, based on the MCU’s clock ticks since startup.
Implementations§
§impl Instant
impl Instant
pub const fn from_ticks(ticks: u64) -> Instant
pub const fn from_ticks(ticks: u64) -> Instant
Create an Instant from a tick count since system boot.
pub const fn from_nanos(nanos: u64) -> Instant
pub const fn from_nanos(nanos: u64) -> Instant
Create an Instant from a nanosecond count since system boot.
pub const fn from_micros(micros: u64) -> Instant
pub const fn from_micros(micros: u64) -> Instant
Create an Instant from a microsecond count since system boot.
pub const fn from_millis(millis: u64) -> Instant
pub const fn from_millis(millis: u64) -> Instant
Create an Instant from a millisecond count since system boot.
pub const fn from_secs(seconds: u64) -> Instant
pub const fn from_secs(seconds: u64) -> Instant
Create an Instant from a second count since system boot.
pub const fn try_from_nanos(nanos: u64) -> Option<Instant>
pub const fn try_from_nanos(nanos: u64) -> Option<Instant>
Try to create an Instant from a nanosecond count since system boot. Fails if the number of nanoseconds is too large.
pub const fn try_from_micros(micros: u64) -> Option<Instant>
pub const fn try_from_micros(micros: u64) -> Option<Instant>
Try to create an Instant from a microsecond count since system boot. Fails if the number of microseconds is too large.
pub const fn try_from_millis(millis: u64) -> Option<Instant>
pub const fn try_from_millis(millis: u64) -> Option<Instant>
Try to create an Instant from a millisecond count since system boot. Fails if the number of milliseconds is too large.
pub const fn try_from_secs(seconds: u64) -> Option<Instant>
pub const fn try_from_secs(seconds: u64) -> Option<Instant>
Try to create an Instant from a second count since system boot. Fails if the number of seconds is too large.
pub fn duration_since(&self, earlier: Instant) -> Duration
pub fn duration_since(&self, earlier: Instant) -> Duration
Duration between this Instant and another Instant Panics on over/underflow.
pub fn checked_duration_since(&self, earlier: Instant) -> Option<Duration>
pub fn checked_duration_since(&self, earlier: Instant) -> Option<Duration>
Duration between this Instant and another Instant
pub fn saturating_duration_since(&self, earlier: Instant) -> Duration
pub fn saturating_duration_since(&self, earlier: Instant) -> Duration
Returns the duration since the “earlier” Instant. If the “earlier” instant is in the future, the duration is set to zero.
pub fn checked_add(&self, duration: Duration) -> Option<Instant>
pub fn checked_add(&self, duration: Duration) -> Option<Instant>
Adds one Duration to self, returning a new Instant or None in the event of an overflow.
pub fn checked_sub(&self, duration: Duration) -> Option<Instant>
pub fn checked_sub(&self, duration: Duration) -> Option<Instant>
Subtracts one Duration to self, returning a new Instant or None in the event of an overflow.
pub fn saturating_add(self, duration: Duration) -> Instant
pub fn saturating_add(self, duration: Duration) -> Instant
Adds a Duration to self. In case of overflow, the maximum value is returned.
pub fn saturating_sub(self, duration: Duration) -> Instant
pub fn saturating_sub(self, duration: Duration) -> Instant
Subtracts a Duration from self. In case of overflow, the minimum value is returned.
Trait Implementations§
§impl AddAssign<Duration> for Instant
impl AddAssign<Duration> for Instant
§fn add_assign(&mut self, other: Duration)
fn add_assign(&mut self, other: Duration)
+= operation. Read more§impl Ord for Instant
impl Ord for Instant
§impl PartialOrd for Instant
impl PartialOrd for Instant
§impl SubAssign<Duration> for Instant
impl SubAssign<Duration> for Instant
§fn sub_assign(&mut self, other: Duration)
fn sub_assign(&mut self, other: Duration)
-= operation. Read more