pub trait MonoTimerExt: Sized {
    fn monotonic<const FREQ: u32>(self, clocks: &Clocks) -> MonoTimer<Self, FREQ>;

    fn monotonic_us(self, clocks: &Clocks) -> MonoTimer<Self, 1_000_000> { ... }
}

Required Methods§

Provided Methods§

Implementors§