pub trait Delay<const TIMER_HZ: u32> {
    type Error: Debug;
    fn delay(
        &mut self,
        duration: TimerDurationU32<TIMER_HZ>
    ) -> Result<(), Self::Error>; }
Expand description

Provides blocking Delay

Associated Types

An error that might happen during waiting

Required methods

Wait until timer duration has expired.

Implementors