Struct sgx_tstd::time::Duration [−][src]
pub struct Duration { /* fields omitted */ }
A Duration
type to represent a span of time, typically used for system
timeouts.
Each Duration
is composed of a whole number of seconds and a fractional part
represented in nanoseconds. If the underlying system does not support
nanosecond-level precision, APIs binding a system timeout will typically round up
the number of nanoseconds.
Duration
s implement many common traits, including Add
, Sub
, and other
[ops
] traits.
Methods
impl Duration
[src]
impl Duration
pub fn new(secs: u64, nanos: u32) -> Duration
[src]
pub fn new(secs: u64, nanos: u32) -> Duration
Creates a new Duration
from the specified number of whole seconds and
additional nanoseconds.
If the number of nanoseconds is greater than 1 billion (the number of nanoseconds in a second), then it will carry over into the seconds provided.
Panics
This constructor will panic if the carry from the nanoseconds overflows the seconds counter.
pub const fn from_secs(secs: u64) -> Duration
[src]
pub const fn from_secs(secs: u64) -> Duration
Creates a new Duration
from the specified number of whole seconds.
pub const fn from_millis(millis: u64) -> Duration
[src]
pub const fn from_millis(millis: u64) -> Duration
Creates a new Duration
from the specified number of milliseconds.
pub const fn from_micros(micros: u64) -> Duration
[src]
pub const fn from_micros(micros: u64) -> Duration
Creates a new Duration
from the specified number of microseconds.
pub const fn from_nanos(nanos: u64) -> Duration
[src]
pub const fn from_nanos(nanos: u64) -> Duration
Creates a new Duration
from the specified number of nanoseconds.
pub fn as_secs(&self) -> u64
[src]
pub fn as_secs(&self) -> u64
Returns the number of whole seconds contained by this Duration
.
The returned value does not include the fractional (nanosecond) part of the
duration, which can be obtained using [subsec_nanos
].
pub fn subsec_millis(&self) -> u32
[src]
pub fn subsec_millis(&self) -> u32
Returns the fractional part of this Duration
, in milliseconds.
This method does not return the length of the duration when represented by milliseconds. The returned number always represents a fractional portion of a second (i.e. it is less than one thousand).
pub fn subsec_micros(&self) -> u32
[src]
pub fn subsec_micros(&self) -> u32
Returns the fractional part of this Duration
, in microseconds.
This method does not return the length of the duration when represented by microseconds. The returned number always represents a fractional portion of a second (i.e. it is less than one million).
pub fn subsec_nanos(&self) -> u32
[src]
pub fn subsec_nanos(&self) -> u32
Returns the fractional part of this Duration
, in nanoseconds.
This method does not return the length of the duration when represented by nanoseconds. The returned number always represents a fractional portion of a second (i.e. it is less than one billion).
pub fn checked_add(self, rhs: Duration) -> Option<Duration>
[src]
pub fn checked_add(self, rhs: Duration) -> Option<Duration>
Checked Duration
addition. Computes self + other
, returning None
if overflow occurred.
pub fn checked_sub(self, rhs: Duration) -> Option<Duration>
[src]
pub fn checked_sub(self, rhs: Duration) -> Option<Duration>
Checked Duration
subtraction. Computes self - other
, returning None
if the result would be negative or if overflow occurred.
pub fn checked_mul(self, rhs: u32) -> Option<Duration>
[src]
pub fn checked_mul(self, rhs: u32) -> Option<Duration>
Checked Duration
multiplication. Computes self * other
, returning
None
if overflow occurred.
pub fn checked_div(self, rhs: u32) -> Option<Duration>
[src]
pub fn checked_div(self, rhs: u32) -> Option<Duration>
Checked Duration
division. Computes self / other
, returning None
if other == 0
.
Trait Implementations
impl Clone for Duration
[src]
impl Clone for Duration
fn clone(&self) -> Duration
[src]
fn clone(&self) -> Duration
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for Duration
[src]
impl Copy for Duration
impl PartialEq for Duration
[src]
impl PartialEq for Duration
fn eq(&self, other: &Duration) -> bool
[src]
fn eq(&self, other: &Duration) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Duration) -> bool
[src]
fn ne(&self, other: &Duration) -> bool
This method tests for !=
.
impl Eq for Duration
[src]
impl Eq for Duration
impl PartialOrd for Duration
[src]
impl PartialOrd for Duration
fn partial_cmp(&self, other: &Duration) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Duration) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Duration) -> bool
[src]
fn lt(&self, other: &Duration) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Duration) -> bool
[src]
fn le(&self, other: &Duration) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Duration) -> bool
[src]
fn gt(&self, other: &Duration) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Duration) -> bool
[src]
fn ge(&self, other: &Duration) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Duration
[src]
impl Ord for Duration
fn cmp(&self, other: &Duration) -> Ordering
[src]
fn cmp(&self, other: &Duration) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Debug for Duration
[src]
impl Debug for Duration
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Hash for Duration
[src]
impl Hash for Duration
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Default for Duration
[src]
impl Default for Duration
impl Add for Duration
[src]
impl Add for Duration
type Output = Duration
The resulting type after applying the +
operator.
fn add(self, rhs: Duration) -> Duration
[src]
fn add(self, rhs: Duration) -> Duration
Performs the +
operation.
impl AddAssign for Duration
[src]
impl AddAssign for Duration
fn add_assign(&mut self, rhs: Duration)
[src]
fn add_assign(&mut self, rhs: Duration)
Performs the +=
operation.
impl Sub for Duration
[src]
impl Sub for Duration
type Output = Duration
The resulting type after applying the -
operator.
fn sub(self, rhs: Duration) -> Duration
[src]
fn sub(self, rhs: Duration) -> Duration
Performs the -
operation.
impl SubAssign for Duration
[src]
impl SubAssign for Duration
fn sub_assign(&mut self, rhs: Duration)
[src]
fn sub_assign(&mut self, rhs: Duration)
Performs the -=
operation.
impl Mul<u32> for Duration
[src]
impl Mul<u32> for Duration
type Output = Duration
The resulting type after applying the *
operator.
fn mul(self, rhs: u32) -> Duration
[src]
fn mul(self, rhs: u32) -> Duration
Performs the *
operation.
impl MulAssign<u32> for Duration
[src]
impl MulAssign<u32> for Duration
fn mul_assign(&mut self, rhs: u32)
[src]
fn mul_assign(&mut self, rhs: u32)
Performs the *=
operation.
impl Div<u32> for Duration
[src]
impl Div<u32> for Duration
type Output = Duration
The resulting type after applying the /
operator.
fn div(self, rhs: u32) -> Duration
[src]
fn div(self, rhs: u32) -> Duration
Performs the /
operation.
impl DivAssign<u32> for Duration
[src]
impl DivAssign<u32> for Duration
fn div_assign(&mut self, rhs: u32)
[src]
fn div_assign(&mut self, rhs: u32)
Performs the /=
operation.
impl Sum for Duration
[src]
impl Sum for Duration
fn sum<I: Iterator<Item = Duration>>(iter: I) -> Duration
[src]
fn sum<I: Iterator<Item = Duration>>(iter: I) -> Duration
Method which takes an iterator and generates Self
from the elements by "summing up" the items. Read more
impl<'a> Sum<&'a Duration> for Duration
[src]
impl<'a> Sum<&'a Duration> for Duration
fn sum<I: Iterator<Item = &'a Duration>>(iter: I) -> Duration
[src]
fn sum<I: Iterator<Item = &'a Duration>>(iter: I) -> Duration
Method which takes an iterator and generates Self
from the elements by "summing up" the items. Read more
impl Add<Duration> for Instant
[src]
impl Add<Duration> for Instant
type Output = Instant
The resulting type after applying the +
operator.
fn add(self, other: Duration) -> Instant
[src]
fn add(self, other: Duration) -> Instant
Performs the +
operation.
impl AddAssign<Duration> for Instant
[src]
impl AddAssign<Duration> for Instant
fn add_assign(&mut self, other: Duration)
[src]
fn add_assign(&mut self, other: Duration)
Performs the +=
operation.
impl Sub<Duration> for Instant
[src]
impl Sub<Duration> for Instant
type Output = Instant
The resulting type after applying the -
operator.
fn sub(self, other: Duration) -> Instant
[src]
fn sub(self, other: Duration) -> Instant
Performs the -
operation.
impl SubAssign<Duration> for Instant
[src]
impl SubAssign<Duration> for Instant
fn sub_assign(&mut self, other: Duration)
[src]
fn sub_assign(&mut self, other: Duration)
Performs the -=
operation.
impl Add<Duration> for SystemTime
[src]
impl Add<Duration> for SystemTime
type Output = SystemTime
The resulting type after applying the +
operator.
fn add(self, dur: Duration) -> SystemTime
[src]
fn add(self, dur: Duration) -> SystemTime
Performs the +
operation.
impl AddAssign<Duration> for SystemTime
[src]
impl AddAssign<Duration> for SystemTime
fn add_assign(&mut self, other: Duration)
[src]
fn add_assign(&mut self, other: Duration)
Performs the +=
operation.
impl Sub<Duration> for SystemTime
[src]
impl Sub<Duration> for SystemTime
type Output = SystemTime
The resulting type after applying the -
operator.
fn sub(self, dur: Duration) -> SystemTime
[src]
fn sub(self, dur: Duration) -> SystemTime
Performs the -
operation.
impl SubAssign<Duration> for SystemTime
[src]
impl SubAssign<Duration> for SystemTime
fn sub_assign(&mut self, other: Duration)
[src]
fn sub_assign(&mut self, other: Duration)
Performs the -=
operation.