pub trait Clock {
// Required method
fn now(&self) -> Instant;
}Available on crate feature
time only.Expand description
A source of time for lifecycles.
A clock returns the current Instant. The meaning of “now” is determined
by the implementation:
ManualClockis deterministic and controlled by tests.SystemClockis monotonic time since the clock was created.