pub trait WasiMonotonicClock: Send + Sync {
// Required methods
fn resolution(&self) -> Duration;
fn now(&self, precision: Duration) -> Instant;
}
Required Methods§
Implementors§
impl WasiMonotonicClock for MonotonicClock
Available on crate feature
sync
only.