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