pub trait Clock {
// Required methods
fn now(&self) -> DateTime;
fn today(&self) -> Date;
fn time_now(&self) -> Time;
}Expand description
Clock trait for obtaining current time
Implementations include SystemClock for wall-clock time
and MonotonicClock for elapsed timing.