Trait TimerExt

Source
pub trait TimerExt<TIM> {
    // Required method
    fn timer<T>(self, timeout: T, rcc: &mut Rcc) -> Timer<TIM>
       where T: Into<Hertz>;
}

Required Methods§

Source

fn timer<T>(self, timeout: T, rcc: &mut Rcc) -> Timer<TIM>
where T: Into<Hertz>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§