pub trait TimerSource: Sealed + 'static {
// Required method
fn timer(self) -> OneShotTimer<'static, Blocking>;
}Expand description
Timers that can be used as time drivers.
This trait is meant to be used only for the start function.
pub trait TimerSource: Sealed + 'static {
// Required method
fn timer(self) -> OneShotTimer<'static, Blocking>;
}Timers that can be used as time drivers.
This trait is meant to be used only for the start function.