pub trait Delay<const TIMER_HZ: u32> { type Error: Debug; // Required method fn delay( &mut self, duration: TimerDurationU32<TIMER_HZ>, ) -> Result<(), Self::Error>; }
Provides blocking Delay
Delay
An error that might happen during waiting
Wait until timer duration has expired.
duration