pub trait WakeupTime {
    // Required method
    fn into_time(self) -> Time;
}
Expand description

The time when a Timer should wakeup.

Required Methods§

source

fn into_time(self) -> Time

Convert this time into a fuchsia_async::Time. This is allowed to be inaccurate, but the inaccuracy must make the wakeup time later, never earlier.

Implementations on Foreign Types§

source§

impl WakeupTime for Duration

source§

impl WakeupTime for Instant

source§

impl WakeupTime for Time

Implementors§

source§

impl WakeupTime for fuchsia_async::Duration

source§

impl WakeupTime for fuchsia_async::Time