pub trait WakeupTime {
// Required method
fn into_timer(self) -> Timer ⓘ;
}
Expand description
The time when a Timer should wakeup.
Required Methods§
Sourcefn into_timer(self) -> Timer ⓘ
fn into_timer(self) -> Timer ⓘ
Create a timer based on this time.
This is allowed to be inaccurate, but the inaccuracy must make the wakeup time later, never earlier.