[][src]Struct mag::Period

pub struct Period<U> where
    U: Unit
{ pub quantity: f64, // some fields omitted }

A measurement of period, duration or interval of time.

Period is a base quantity with a specific unit.

Operations

  • Period + Period => Period
  • Period - Period => Period
  • Period * f64 => Period
  • f64 * Period => Period
  • f64 * unit => Period
  • f64 / Period => Frequency

Units must be the same for operations with two Period operands. The to method can be used for conversion.

use mag::time::{min, s};

let a = 15.0 * min;
let b = 90.0 * s;

assert_eq!(a.to_string(), "15 min");
assert_eq!((a + b.to()).to_string(), "16.5 min");

Fields

quantity: f64

Period quantity

Methods

impl<U> Period<U> where
    U: Unit
[src]

pub fn new(quantity: f64) -> Self[src]

Create a new period measurement

pub fn to<T: Unit>(self) -> Period<T>[src]

Convert to specified units

Trait Implementations

impl<U: Clone> Clone for Period<U> where
    U: Unit
[src]

impl<U: Copy> Copy for Period<U> where
    U: Unit
[src]

impl<U: PartialEq> PartialEq<Period<U>> for Period<U> where
    U: Unit
[src]

impl<U> Display for Period<U> where
    U: Unit
[src]

impl<U: Debug> Debug for Period<U> where
    U: Unit
[src]

impl<U> Div<f64> for Period<U> where
    U: Unit
[src]

type Output = Self

The resulting type after applying the / operator.

impl<U> Div<Period<U>> for f64 where
    U: Unit
[src]

type Output = Frequency<U>

The resulting type after applying the / operator.

impl<L, T> Div<Period<T>> for Length<L> where
    L: Unit,
    T: Unit
[src]

type Output = Speed<L, T>

The resulting type after applying the / operator.

impl<U> Sub<Period<U>> for Period<U> where
    U: Unit
[src]

type Output = Self

The resulting type after applying the - operator.

impl<U> Add<Period<U>> for Period<U> where
    U: Unit
[src]

type Output = Self

The resulting type after applying the + operator.

impl<U> Mul<f64> for Period<U> where
    U: Unit
[src]

type Output = Self

The resulting type after applying the * operator.

impl<U> Mul<Period<U>> for f64 where
    U: Unit
[src]

type Output = Period<U>

The resulting type after applying the * operator.

impl<U> StructuralPartialEq for Period<U> where
    U: Unit
[src]

Auto Trait Implementations

impl<U> Send for Period<U> where
    U: Send

impl<U> Sync for Period<U> where
    U: Sync

impl<U> Unpin for Period<U> where
    U: Unpin

impl<U> UnwindSafe for Period<U> where
    U: UnwindSafe

impl<U> RefUnwindSafe for Period<U> where
    U: RefUnwindSafe

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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

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