[−][src]Struct coarsetime::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.
pub fn add(self, rhs: Duration) -> Duration[src]
impl Add<Duration> for Instant[src]
type Output = Instant
The resulting type after applying the + operator.
pub fn add(self, rhs: Duration) -> Instant[src]
impl AddAssign<Duration> for Duration[src]
pub fn add_assign(&mut self, rhs: Duration)[src]
impl AddAssign<Duration> for Instant[src]
pub fn add_assign(&mut self, rhs: Duration)[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.
pub fn div(self, rhs: u32) -> Duration[src]
impl DivAssign<u32> for Duration[src]
pub fn div_assign(&mut self, rhs: u32)[src]
impl Eq for Duration[src]
impl From<Duration> for Duration[src]
impl Hash for Duration[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Into<Duration> for Duration[src]
impl Mul<u32> for Duration[src]
type Output = Duration
The resulting type after applying the * operator.
pub fn mul(self, rhs: u32) -> Duration[src]
impl MulAssign<u32> for Duration[src]
pub fn mul_assign(&mut self, rhs: u32)[src]
impl Ord for Duration[src]
pub fn cmp(&self, other: &Duration) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<Duration> for Duration[src]
impl PartialOrd<Duration> for Duration[src]
pub fn partial_cmp(&self, other: &Duration) -> Option<Ordering>[src]
pub fn lt(&self, other: &Duration) -> bool[src]
pub fn le(&self, other: &Duration) -> bool[src]
pub fn gt(&self, other: &Duration) -> bool[src]
pub fn ge(&self, other: &Duration) -> bool[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.
pub fn sub(self, rhs: Duration) -> Duration[src]
impl Sub<Duration> for Instant[src]
type Output = Instant
The resulting type after applying the - operator.
pub fn sub(self, rhs: Duration) -> Instant[src]
impl SubAssign<Duration> for Duration[src]
pub fn sub_assign(&mut self, rhs: Duration)[src]
impl SubAssign<Duration> for Instant[src]
pub fn sub_assign(&mut self, rhs: Duration)[src]
Auto Trait Implementations
impl RefUnwindSafe for Duration
impl Send for Duration
impl Sync for Duration
impl Unpin for Duration
impl UnwindSafe for Duration
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,