pub struct Duration(/* private fields */);
Expand description
A duration type to represent an approximate span of time
Implementations§
Source§impl Duration
impl Duration
Sourcepub fn new(sec: u64, nanos: u32) -> Duration
pub fn new(sec: u64, nanos: u32) -> Duration
Creates a new Duration
from the specified number of seconds and
additional nanosecond precision
Sourcepub fn from_days(days: u64) -> Duration
pub fn from_days(days: u64) -> Duration
Creates a new Duration from the specified number of days
Sourcepub fn from_hours(hours: u64) -> Duration
pub fn from_hours(hours: u64) -> Duration
Creates a new Duration from the specified number of hours
Sourcepub fn from_mins(mins: u64) -> Duration
pub fn from_mins(mins: u64) -> Duration
Creates a new Duration from the specified number of minutes
Sourcepub fn from_secs(secs: u64) -> Duration
pub fn from_secs(secs: u64) -> Duration
Creates a new Duration from the specified number of seconds
Sourcepub fn from_millis(millis: u64) -> Duration
pub fn from_millis(millis: u64) -> Duration
Creates a new Duration from the specified number of milliseconds
Sourcepub fn as_millis(&self) -> u64
pub fn as_millis(&self) -> u64
Returns the number of whole milliseconds represented by this duration
Sourcepub fn as_micros(&self) -> u64
pub fn as_micros(&self) -> u64
Returns the number of whole microseconds represented by this duration
Sourcepub fn as_nanos(&self) -> u64
pub fn as_nanos(&self) -> u64
Returns the number of whole nanoseconds represented by this duration
Sourcepub fn subsec_nanos(&self) -> u32
pub fn subsec_nanos(&self) -> u32
Returns the nanosecond precision represented by this duration
Sourcepub fn as_ticks(&self) -> u64
pub fn as_ticks(&self) -> u64
Return this duration as a number of “ticks”.
Note that length of a ‘tick’ is not guaranteed to represent
the same amount of time across different platforms, or from
one version of coarsetime
to another.
Sourcepub fn from_ticks(ticks: u64) -> Duration
pub fn from_ticks(ticks: u64) -> Duration
Creates a new Duration from the specified number of “ticks”.
Note that length of a ‘tick’ is not guaranteed to represent
the same amount of time across different platforms, or from
one version of coarsetime
to another.
Sourcepub fn as_f64(&self) -> f64
pub fn as_f64(&self) -> f64
Returns the duration as a floating point number, representing the number of seconds
Sourcepub fn abs_diff(&self, other: Duration) -> Duration
pub fn abs_diff(&self, other: Duration) -> Duration
Returns the absolute difference between two Duration
s
Sourcepub fn saturating_add(self, rhs: Duration) -> Duration
pub fn saturating_add(self, rhs: Duration) -> Duration
Add two durations, saturating on overflow
Sourcepub fn checked_add(self, rhs: Duration) -> Option<Duration>
pub fn checked_add(self, rhs: Duration) -> Option<Duration>
Add two durations, returning None
on overflow
Sourcepub fn saturating_sub(self, rhs: Duration) -> Duration
pub fn saturating_sub(self, rhs: Duration) -> Duration
Subtract two durations, saturating on underflow/overflow
Sourcepub fn checked_sub(self, rhs: Duration) -> Option<Duration>
pub fn checked_sub(self, rhs: Duration) -> Option<Duration>
Subtract two durations, returning None
on underflow/overflow
Sourcepub fn saturating_mul(self, rhs: u32) -> Duration
pub fn saturating_mul(self, rhs: u32) -> Duration
Multiply a duration by a scalar, saturating on overflow
Sourcepub fn checked_mul(self, rhs: u32) -> Option<Duration>
pub fn checked_mul(self, rhs: u32) -> Option<Duration>
Multiply a duration by a scalar, returning None
on overflow
Sourcepub fn checked_div(self, rhs: u32) -> Option<Duration>
pub fn checked_div(self, rhs: u32) -> Option<Duration>
Divide a duration by a scalar, returning None
for division by zero
Trait Implementations§
Source§impl AddAssign<Duration> for Instant
impl AddAssign<Duration> for Instant
Source§fn add_assign(&mut self, rhs: Duration)
fn add_assign(&mut self, rhs: Duration)
+=
operation. Read moreSource§impl AddAssign for Duration
impl AddAssign for Duration
Source§fn add_assign(&mut self, rhs: Duration)
fn add_assign(&mut self, rhs: Duration)
+=
operation. Read moreSource§impl DivAssign<u32> for Duration
impl DivAssign<u32> for Duration
Source§fn div_assign(&mut self, rhs: u32)
fn div_assign(&mut self, rhs: u32)
/=
operation. Read moreSource§impl MulAssign<u32> for Duration
impl MulAssign<u32> for Duration
Source§fn mul_assign(&mut self, rhs: u32)
fn mul_assign(&mut self, rhs: u32)
*=
operation. Read moreSource§impl Ord for Duration
impl Ord for Duration
Source§impl PartialOrd for Duration
impl PartialOrd for Duration
Source§impl SubAssign<Duration> for Instant
impl SubAssign<Duration> for Instant
Source§fn sub_assign(&mut self, rhs: Duration)
fn sub_assign(&mut self, rhs: Duration)
-=
operation. Read moreSource§impl SubAssign for Duration
impl SubAssign for Duration
Source§fn sub_assign(&mut self, rhs: Duration)
fn sub_assign(&mut self, rhs: Duration)
-=
operation. Read more