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