#[non_exhaustive]
pub enum DurationUnit { Second, Millisecond, Microsecond, Nanosecond, Minute, Hour, Day, Year, }
Expand description

Represents a specific duration unit - SI or otherwise.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Second

SI Base Unit for Duration - Second.

The second division of the hour by 60.

§

Millisecond

A milli-second, one-thousandth of a second (1e-3)

§

Microsecond

A micro-second, one-millionth of a second (1e-6)

§

Nanosecond

A nano-second, one-billionth of a second (1e-9)

§

Minute

A minute, the first division of an hour by 60.

§

Hour

An hour, 24 in a day.

§

Day

NIST 811 defines a “Day” as 86400 seconds, without the concept of leap seconds.

§

Year

NIST 811 defines a “Year” as 365 days, or 31_536_000 seconds, without the concept of leap days.

Implementations§

source§

impl DurationUnit

source

pub fn as_seconds(self, value: f64) -> f64

Converts the specified value into Seconds

source

pub fn as_millis(self, value: f64) -> f64

Converts the specified value into Milliseconds

source

pub fn as_micros(self, value: f64) -> f64

Converts the specified value into Microseconds

source

pub fn as_nanos(self, value: f64) -> f64

Converts the specified value into Nanoseconds

source

pub fn as_minutes(self, value: f64) -> f64

Converts the specified value into Minutes

source

pub fn as_hours(self, value: f64) -> f64

Converts the specified value into Hours

Trait Implementations§

source§

impl Clone for DurationUnit

source§

fn clone(&self) -> DurationUnit

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DurationUnit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for DurationUnit

source§

fn default() -> DurationUnit

Returns the “default value” for a type. Read more
source§

impl FromUnits<f32> for DurationUnit

source§

fn from(&self, value: f32, units: DurationUnit) -> f32

Converts the value with unit units into this (self) unit
source§

impl FromUnits<f64> for DurationUnit

source§

fn from(&self, value: f64, units: DurationUnit) -> f64

Converts the value with unit units into this (self) unit
source§

impl FromUnits<i32> for DurationUnit

source§

fn from(&self, value: i32, units: DurationUnit) -> i32

Converts the value with unit units into this (self) unit
source§

impl FromUnits<i64> for DurationUnit

source§

fn from(&self, value: i64, units: DurationUnit) -> i64

Converts the value with unit units into this (self) unit
source§

impl FromUnits<u32> for DurationUnit

source§

fn from(&self, value: u32, units: DurationUnit) -> u32

Converts the value with unit units into this (self) unit
source§

impl FromUnits<u64> for DurationUnit

source§

fn from(&self, value: u64, units: DurationUnit) -> u64

Converts the value with unit units into this (self) unit
source§

impl PartialEq for DurationUnit

source§

fn eq(&self, other: &DurationUnit) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Unit<DurationUnit> for Duration

source§

impl UnitStruct<DurationUnit> for Duration

source§

fn new(value: f64, units: DurationUnit) -> Duration

Creates a new type
source§

fn value(&self) -> f64

Returns the value of this struct
source§

fn units(&self) -> DurationUnit

Returns the unit type of this struct
source§

impl Copy for DurationUnit

source§

impl Eq for DurationUnit

source§

impl StructuralEq for DurationUnit

source§

impl StructuralPartialEq for DurationUnit

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> MaybeInto<U> for T
where U: MaybeFrom<T>,

source§

fn maybe_into(self) -> Option<U>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.