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.
Durations implement many common traits, including Add, Sub, and other
[ops] traits.
Methods
impl Duration[src]
impl Durationpub fn new(secs: u64, nanos: u32) -> Duration[src]
pub fn new(secs: u64, nanos: u32) -> DurationCreates 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) -> DurationCreates 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) -> DurationCreates 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) -> DurationCreates 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) -> DurationCreates a new Duration from the specified number of nanoseconds.
pub fn as_secs(&self) -> u64[src]
pub fn as_secs(&self) -> u64Returns 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) -> u32Returns 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) -> u32Returns 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) -> u32Returns 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 Durationfn clone(&self) -> Duration[src]
fn clone(&self) -> DurationReturns 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 Durationimpl PartialEq for Duration[src]
impl PartialEq for Durationfn eq(&self, other: &Duration) -> bool[src]
fn eq(&self, other: &Duration) -> boolThis 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) -> boolThis method tests for !=.
impl Eq for Duration[src]
impl Eq for Durationimpl PartialOrd for Duration[src]
impl PartialOrd for Durationfn 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) -> boolThis 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) -> boolThis 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) -> boolThis 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) -> boolThis 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 Durationfn cmp(&self, other: &Duration) -> Ordering[src]
fn cmp(&self, other: &Duration) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Debug for Duration[src]
impl Debug for Durationfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Hash for Duration[src]
impl Hash for Durationfn 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 Durationimpl Add for Duration[src]
impl Add for Durationtype Output = Duration
The resulting type after applying the + operator.
fn add(self, rhs: Duration) -> Duration[src]
fn add(self, rhs: Duration) -> DurationPerforms the + operation.
impl AddAssign for Duration[src]
impl AddAssign for Durationfn 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 Durationtype Output = Duration
The resulting type after applying the - operator.
fn sub(self, rhs: Duration) -> Duration[src]
fn sub(self, rhs: Duration) -> DurationPerforms the - operation.
impl SubAssign for Duration[src]
impl SubAssign for Durationfn 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 Durationtype Output = Duration
The resulting type after applying the * operator.
fn mul(self, rhs: u32) -> Duration[src]
fn mul(self, rhs: u32) -> DurationPerforms the * operation.
impl MulAssign<u32> for Duration[src]
impl MulAssign<u32> for Durationfn 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 Durationtype Output = Duration
The resulting type after applying the / operator.
fn div(self, rhs: u32) -> Duration[src]
fn div(self, rhs: u32) -> DurationPerforms the / operation.
impl DivAssign<u32> for Duration[src]
impl DivAssign<u32> for Durationfn 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 Durationfn sum<I: Iterator<Item = Duration>>(iter: I) -> Duration[src]
fn sum<I: Iterator<Item = Duration>>(iter: I) -> DurationMethod 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 Durationfn sum<I: Iterator<Item = &'a Duration>>(iter: I) -> Duration[src]
fn sum<I: Iterator<Item = &'a Duration>>(iter: I) -> DurationMethod 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 Instanttype Output = Instant
The resulting type after applying the + operator.
fn add(self, other: Duration) -> Instant[src]
fn add(self, other: Duration) -> InstantPerforms the + operation.
impl AddAssign<Duration> for Instant[src]
impl AddAssign<Duration> for Instantfn 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 Instanttype Output = Instant
The resulting type after applying the - operator.
fn sub(self, other: Duration) -> Instant[src]
fn sub(self, other: Duration) -> InstantPerforms the - operation.
impl SubAssign<Duration> for Instant[src]
impl SubAssign<Duration> for Instantfn 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 SystemTimetype Output = SystemTime
The resulting type after applying the + operator.
fn add(self, dur: Duration) -> SystemTime[src]
fn add(self, dur: Duration) -> SystemTimePerforms the + operation.
impl AddAssign<Duration> for SystemTime[src]
impl AddAssign<Duration> for SystemTimefn 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 SystemTimetype Output = SystemTime
The resulting type after applying the - operator.
fn sub(self, dur: Duration) -> SystemTime[src]
fn sub(self, dur: Duration) -> SystemTimePerforms the - operation.
impl SubAssign<Duration> for SystemTime[src]
impl SubAssign<Duration> for SystemTimefn sub_assign(&mut self, other: Duration)[src]
fn sub_assign(&mut self, other: Duration)Performs the -= operation.