[][src]Struct coarsetime::Duration

pub struct Duration(_);

A duration type to represent an approximate span of time

Implementations

impl Duration[src]

pub fn new(sec: u64, nanos: u32) -> Duration[src]

Creates a new Duration from the specified number of seconds and additional nanosecond precision

pub fn from_days(days: u64) -> Duration[src]

Creates a new Duration from the specified number of days

pub fn from_hours(hours: u64) -> Duration[src]

Creates a new Duration from the specified number of hours

pub fn from_mins(mins: u64) -> Duration[src]

Creates a new Duration from the specified number of minutes

pub fn from_secs(secs: u64) -> Duration[src]

Creates a new Duration from the specified number of seconds

pub fn from_millis(millis: u64) -> Duration[src]

Creates a new Duration from the specified number of milliseconds

pub fn as_days(&self) -> u64[src]

Returns the number of days represented by this duration

pub fn as_hours(&self) -> u64[src]

Returns the number of minutes represented by this duration

pub fn as_mins(&self) -> u64[src]

Returns the number of minutes represented by this duration

pub fn as_secs(&self) -> u64[src]

Returns the number of whole seconds represented by this duration

pub fn as_millis(&self) -> u64[src]

Returns the number of whole milliseconds represented by this duration

pub fn as_micros(&self) -> u64[src]

Returns the number of whole microseconds represented by this duration

pub fn as_nanos(&self) -> u64[src]

Returns the number of whole nanoseconds represented by this duration

pub fn subsec_nanos(&self) -> u32[src]

Returns the nanosecond precision represented by this duration

pub fn as_f64(&self) -> f64[src]

Returns the duration as a floating point number, representing the number of seconds

Trait Implementations

impl Add<Duration> for Duration[src]

type Output = Duration

The resulting type after applying the + operator.

impl Add<Duration> for Instant[src]

type Output = Instant

The resulting type after applying the + operator.

impl AddAssign<Duration> for Duration[src]

impl AddAssign<Duration> for Instant[src]

impl Clone for Duration[src]

impl Copy for Duration[src]

impl Debug for Duration[src]

impl Default for Duration[src]

impl Div<u32> for Duration[src]

type Output = Duration

The resulting type after applying the / operator.

impl DivAssign<u32> for Duration[src]

impl Eq for Duration[src]

impl From<Duration> for Duration[src]

impl Hash for Duration[src]

impl Into<Duration> for Duration[src]

impl Mul<u32> for Duration[src]

type Output = Duration

The resulting type after applying the * operator.

impl MulAssign<u32> for Duration[src]

impl Ord for Duration[src]

impl PartialEq<Duration> for Duration[src]

impl PartialOrd<Duration> for Duration[src]

impl StructuralEq for Duration[src]

impl StructuralPartialEq for Duration[src]

impl Sub<Duration> for Duration[src]

type Output = Duration

The resulting type after applying the - operator.

impl Sub<Duration> for Instant[src]

type Output = Instant

The resulting type after applying the - operator.

impl SubAssign<Duration> for Duration[src]

impl SubAssign<Duration> for Instant[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.