irox_units::units::duration

Struct Duration

Source
pub struct Duration { /* private fields */ }

Implementations§

Source§

impl Duration

Source

pub const fn new(value: f64, units: DurationUnit) -> Self

Source

pub fn value(&self) -> f64

Source

pub fn units(&self) -> DurationUnit

Source§

impl Duration

Source

pub const fn new_seconds(value: f64) -> Duration

Creates a new duration using the specified number of seconds

Source

pub fn as_ydhms(&self) -> (u64, u16, u8, u8, u8)

Returns this duration as (Years, Days, Hours, Minutes, Seconds)

Source

pub fn as_dhms(&self) -> (u64, u8, u8, u8)

Returns this duration as (Days, Hours, Minutes, Seconds)

Source

pub fn as_hms(&self) -> (u64, u8, u8)

Returns this duration as (Hours, Minutes, Seconds)

Source

pub fn as_seconds(&self) -> u64

Returns the value of this duration as whole seconds, with any fractional element truncated off.

Source

pub fn as_seconds_f64(&self) -> f64

Returns the value of this duration in fractional seconds

Source

pub fn as_seconds_f32(&self) -> f32

Returns the value of this duration in fractional seconds

Source

pub fn as_millis(&self) -> u64

Returns the value of this duration as whole milliseconds, with any fractional element truncated off.

Source

pub fn as_micros(&self) -> u64

Returns the value of this duration as whole microseconds, with any fractional element truncated off.

Source

pub fn as_nanos(&self) -> u64

Returns the value of this duration as whole microseconds, with any fractional element truncated off.

Source

pub fn as_minutes(&self) -> u64

Returns the value of this duration as whole minutes, with any fractional element truncated off

Source

pub fn as_hours(&self) -> u64

Returns the value of this duration as whole hours, with any fractional element truncated off

Source

pub fn as_days(&self) -> u64

Returns the value of this duration as whole days, with any fractional element truncated off

Source

pub fn as_years(&self) -> u64

Returns the value of this duration as whole years, with any fractional element truncated off

Source§

impl Duration

Source

pub const fn from_micros(micros: u64) -> Duration

Creates a new Duration from the specified number of microseconds.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_micros(1_000_002);

assert_eq!(1, duration.as_seconds());
Source

pub const fn from_millis(millis: u64) -> Duration

Creates a new Duration from the specified number of milliseconds.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_millis(2569);

assert_eq!(2, duration.as_seconds());
Source

pub const fn from_nanos(nanos: u64) -> Duration

Creates a new Duration from the specified number of nanoseconds.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_nanos(1_000_000_123);

assert_eq!(1, duration.as_seconds());
Source

pub const fn from_minutes(minutes: u64) -> Duration

Creates a new Duration from the specified number of minutes.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_minutes(1);

assert_eq!(60, duration.as_seconds());
Source

pub const fn from_hours(hours: u64) -> Duration

Creates a new Duration from the specified number of hours.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_hours(1);

assert_eq!(3600, duration.as_seconds());
Source

pub const fn from_days(days: u64) -> Duration

Creates a new Duration from the specified number of NIST 811 Days where 1 Day = 86400 Seconds

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_days(1);

assert_eq!(86400, duration.as_seconds());
Source

pub const fn from_years(years: u64) -> Duration

Creates a new Duration from the specified number of NIST 811 Years where 1 Year = 365 Days.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_years(1);

assert_eq!(31_536_000, duration.as_seconds());
Source

pub const fn from_seconds(seconds: u64) -> Duration

Creates a new Duration from the specified number of seconds.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_seconds(100);

assert_eq!(100, duration.as_seconds());
Source

pub const fn from_seconds_f64(seconds: f64) -> Duration

Creates a new Duration from the specified number of f64 seconds.

§Examples
use irox_units::units::duration::Duration;

let duration = Duration::from_seconds_f64(25.5);

assert_eq!(25.5, duration.as_seconds_f64());

Trait Implementations§

Source§

impl<'a> Add<&Duration> for &Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<&Duration> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<&Duration> for Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<&mut Duration> for &Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &mut Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<&mut Duration> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &mut Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<&mut Duration> for Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &mut Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<Duration> for &Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add<Duration> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> Add for Duration

Source§

type Output = Duration

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Duration) -> Duration

Performs the + operation. Read more
Source§

impl<'a> AddAssign<&Duration> for &mut Duration

Source§

fn add_assign(&mut self, rhs: &Duration)

Performs the += operation. Read more
Source§

impl<'a> AddAssign<&Duration> for Duration

Source§

fn add_assign(&mut self, rhs: &Duration)

Performs the += operation. Read more
Source§

impl<'a> AddAssign<&mut Duration> for &mut Duration

Source§

fn add_assign(&mut self, rhs: &mut Duration)

Performs the += operation. Read more
Source§

impl<'a> AddAssign<&mut Duration> for Duration

Source§

fn add_assign(&mut self, rhs: &mut Duration)

Performs the += operation. Read more
Source§

impl<'a> AddAssign<Duration> for &mut Duration

Source§

fn add_assign(&mut self, rhs: Duration)

Performs the += operation. Read more
Source§

impl<'a> AddAssign for Duration

Source§

fn add_assign(&mut self, rhs: Duration)

Performs the += operation. Read more
Source§

impl Clone for Duration

Source§

fn clone(&self) -> Duration

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 Duration

Source§

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

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

impl Default for Duration

Source§

fn default() -> Duration

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

impl Display for Duration

Source§

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

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

impl<'a> Div<&Duration> for &Duration

Source§

type Output = f64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Duration) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&mut Duration> for &mut Duration

Source§

type Output = f64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &mut Duration) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<f64> for &Duration

Source§

type Output = Duration

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Duration

Performs the / operation. Read more
Source§

impl<'a> Div<f64> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Duration

Performs the / operation. Read more
Source§

impl<'a> Div<f64> for Duration

Source§

type Output = Duration

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Duration

Performs the / operation. Read more
Source§

impl<'a> Div for Duration

Source§

type Output = f64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Duration) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> DivAssign<f64> for &mut Duration

Source§

fn div_assign(&mut self, rhs: f64)

Performs the /= operation. Read more
Source§

impl<'a> DivAssign<f64> for Duration

Source§

fn div_assign(&mut self, rhs: f64)

Performs the /= operation. Read more
Source§

impl From<Duration> for Duration

Source§

fn from(value: Duration) -> Self

Converts to this type from the input type.
Source§

impl From<Duration> for Duration

Source§

fn from(value: Duration) -> Self

Converts to this type from the input type.
Source§

impl<'a> Mul<&Duration> for &Duration

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Duration) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&Duration> for f64

Source§

type Output = Duration

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Duration) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&mut Duration> for &mut Duration

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &mut Duration) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&mut Duration> for f64

Source§

type Output = Duration

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &mut Duration) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<Duration> for f64

Source§

type Output = Duration

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Duration) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<f64> for &Duration

Source§

type Output = Duration

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Duration

Performs the * operation. Read more
Source§

impl<'a> Mul<f64> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Duration

Performs the * operation. Read more
Source§

impl<'a> Mul<f64> for Duration

Source§

type Output = Duration

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Duration

Performs the * operation. Read more
Source§

impl<'a> Mul for Duration

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Duration) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> MulAssign<f64> for &mut Duration

Source§

fn mul_assign(&mut self, rhs: f64)

Performs the *= operation. Read more
Source§

impl<'a> MulAssign<f64> for Duration

Source§

fn mul_assign(&mut self, rhs: f64)

Performs the *= operation. Read more
Source§

impl Ord for Duration

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Duration

Source§

fn eq(&self, rhs: &Duration) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Duration

Source§

fn partial_cmp(&self, rhs: &Duration) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<'a> Sub<&Duration> for &Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<&Duration> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<&Duration> for Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<&mut Duration> for &Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &mut Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<&mut Duration> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &mut Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<&mut Duration> for Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &mut Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<Duration> for &Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub<Duration> for &mut Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> Sub for Duration

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Duration) -> Duration

Performs the - operation. Read more
Source§

impl<'a> SubAssign<&Duration> for &mut Duration

Source§

fn sub_assign(&mut self, rhs: &Duration)

Performs the -= operation. Read more
Source§

impl<'a> SubAssign<&Duration> for Duration

Source§

fn sub_assign(&mut self, rhs: &Duration)

Performs the -= operation. Read more
Source§

impl<'a> SubAssign<&mut Duration> for &mut Duration

Source§

fn sub_assign(&mut self, rhs: &mut Duration)

Performs the -= operation. Read more
Source§

impl<'a> SubAssign<&mut Duration> for Duration

Source§

fn sub_assign(&mut self, rhs: &mut Duration)

Performs the -= operation. Read more
Source§

impl<'a> SubAssign<Duration> for &mut Duration

Source§

fn sub_assign(&mut self, rhs: Duration)

Performs the -= operation. Read more
Source§

impl<'a> SubAssign for Duration

Source§

fn sub_assign(&mut self, rhs: Duration)

Performs the -= operation. Read more
Source§

impl Unit<DurationUnit> for &Duration

Source§

type Output = Duration

Source§

fn as_unit(&self, units: DurationUnit) -> Duration
where Self: Sized,

Source§

impl Unit<DurationUnit> for &mut Duration

Source§

type Output = Duration

Source§

fn as_unit(&self, units: DurationUnit) -> Duration
where Self: Sized,

Source§

impl Unit<DurationUnit> for Duration

Source§

type Output = Duration

Source§

fn as_unit(&self, units: DurationUnit) -> Duration
where Self: Sized,

Source§

impl UnitStruct<DurationUnit> for &Duration

Source§

type Output = 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 UnitStruct<DurationUnit> for &mut Duration

Source§

type Output = 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 UnitStruct<DurationUnit> for Duration

Source§

type Output = 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 Duration

Source§

impl Eq for Duration

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

Source§

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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>,

Source§

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.