[][src]Trait alt_stm32f30x_hal::time::ISizeBitrateExt

pub trait ISizeBitrateExt<T> {
    fn bps(self) -> Bps<T>;
fn hz(self) -> Hertz<T>;
fn khz(self) -> KiloHertz<T>;
fn mhz(self) -> MegaHertz<T>; }

Extension trait that adds convenience methods to the isize type.

Required methods

fn bps(self) -> Bps<T>

Wrap in Bps

fn hz(self) -> Hertz<T>

Wrap in Hertz

fn khz(self) -> KiloHertz<T>

Wrap in KiloHertz

fn mhz(self) -> MegaHertz<T>

Wrap in MegaHertz

Loading content...

Implementors

impl ISizeBitrateExt<isize> for isize[src]

Loading content...