Trait embedded_time::duration::Extensions[][src]

pub trait Extensions: TimeInt {
    fn nanoseconds(self) -> Nanoseconds<Self> { ... }
fn microseconds(self) -> Microseconds<Self> { ... }
fn milliseconds(self) -> Milliseconds<Self> { ... }
fn seconds(self) -> Seconds<Self> { ... }
fn minutes(self) -> Minutes<Self> { ... }
fn hours(self) -> Hours<Self> { ... } }
Expand description

Create duration-based extensions from primitive numeric types.

use embedded_time::duration::*;

assert_eq!(5.nanoseconds(), Nanoseconds(5_u32));
assert_eq!(5.microseconds(), Microseconds(5_u32));
assert_eq!(5.milliseconds(), Milliseconds(5_u32));
assert_eq!(5.seconds(), Seconds(5_u32));
assert_eq!(5.minutes(), Minutes(5_u32));
assert_eq!(5.hours(), Hours(5_u32));

Provided methods

fn nanoseconds(self) -> Nanoseconds<Self>[src]

nanoseconds

fn microseconds(self) -> Microseconds<Self>[src]

microseconds

fn milliseconds(self) -> Milliseconds<Self>[src]

milliseconds

fn seconds(self) -> Seconds<Self>[src]

seconds

fn minutes(self) -> Minutes<Self>[src]

minutes

fn hours(self) -> Hours<Self>[src]

hours

Implementors

impl Extensions for u32[src]