[][src]Trait sodaq_one::time::U32Ext

pub trait U32Ext {
    fn bps(self) -> Bps;
fn hz(self) -> Hertz;
fn khz(self) -> KiloHertz;
fn mhz(self) -> MegaHertz;
fn s(self) -> Seconds;
fn ms(self) -> Milliseconds;
fn us(self) -> Microseconds;
fn ns(self) -> Nanoseconds; }

Extension trait that adds convenience methods to the u32 type

Required methods

fn bps(self) -> Bps

Wrap in Bps

fn hz(self) -> Hertz

Wrap in Hertz

fn khz(self) -> KiloHertz

Wrap in KiloHertz

fn mhz(self) -> MegaHertz

Wrap in MegaHertz

fn s(self) -> Seconds

Wrap in Seconds

fn ms(self) -> Milliseconds

Wrap in Milliseconds

fn us(self) -> Microseconds

Wrap in Microseconds

fn ns(self) -> Nanoseconds

Wrap in NanoSeconds

Loading content...

Implementors

impl U32Ext for u32[src]

Loading content...