pub trait Clock: Send + Sync {
// Required method
fn now(&self) -> SystemTime;
}Expand description
Injectable clock for testability.
pub trait Clock: Send + Sync {
// Required method
fn now(&self) -> SystemTime;
}Injectable clock for testability.