pub trait SystemClockExt {
    type SystemTime;

    // Required methods
    fn now_with(&self, precision: Duration) -> Self::SystemTime;
    fn resolution(&self) -> Duration;
}
Expand description

Extension trait for cap_std::time::SystemClock.

Required Associated Types§

source

type SystemTime

A system clock datapoint.

Required Methods§

source

fn now_with(&self, precision: Duration) -> Self::SystemTime

Similar to SystemClock::now, but takes an additional precision parameter allowing callers to inform the implementation when they don’t need full precision. The implementation need not make any effort to provide a time with greater precision.

source

fn resolution(&self) -> Duration

Return the resolution of the clock.

Implementations on Foreign Types§

source§

impl SystemClockExt for SystemClock

§

type SystemTime = SystemTime

source§

fn now_with(&self, _precision: Duration) -> Self::SystemTime

source§

fn resolution(&self) -> Duration

Implementors§