pub trait Clock: 'static + Sync + Send {
    fn now(&self) -> Instant;
}
Expand description

A source of monotonic time.

Required Methods

Returns the current time.

Implementors