pub trait ExtMilliHertz {
    fn mHz(self) -> MilliHertz;
    fn Hz(self) -> Hertz;
    fn kHz(self) -> KiloHertz;
    fn MHz(self) -> MegaHertz;
}
Expand description

Extension trait that adds convenience methods to the u32 type

Required Methods

Wrap in MilliHertz

Wrap in Hertz

Wrap in KiloHertz

Wrap in MegaHertz

Implementations on Foreign Types

Implementors