[−][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_secs(sec: 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_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.
fn add(self, rhs: Duration) -> Duration[src]
impl Add<Duration> for Instant[src]
type Output = Instant
The resulting type after applying the + operator.
fn add(self, rhs: Duration) -> Instant[src]
impl AddAssign<Duration> for Duration[src]
fn add_assign(&mut self, rhs: Duration)[src]
impl AddAssign<Duration> for Instant[src]
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.
fn div(self, rhs: u32) -> Duration[src]
impl DivAssign<u32> for Duration[src]
fn div_assign(&mut self, rhs: u32)[src]
impl Eq for Duration[src]
impl From<Duration> for Duration[src]
impl Hash for Duration[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
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.
fn mul(self, rhs: u32) -> Duration[src]
impl MulAssign<u32> for Duration[src]
fn mul_assign(&mut self, rhs: u32)[src]
impl Ord for Duration[src]
fn cmp(&self, other: &Duration) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Duration> for Duration[src]
impl PartialOrd<Duration> for Duration[src]
fn partial_cmp(&self, other: &Duration) -> Option<Ordering>[src]
fn lt(&self, other: &Duration) -> bool[src]
fn le(&self, other: &Duration) -> bool[src]
fn gt(&self, other: &Duration) -> bool[src]
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.
fn sub(self, rhs: Duration) -> Duration[src]
impl Sub<Duration> for Instant[src]
type Output = Instant
The resulting type after applying the - operator.
fn sub(self, rhs: Duration) -> Instant[src]
impl SubAssign<Duration> for Duration[src]
fn sub_assign(&mut self, rhs: Duration)[src]
impl SubAssign<Duration> for Instant[src]
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,
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.
fn to_owned(&self) -> T[src]
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.
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>,