pub trait Clock: Send + Sync { // Required method fn now(&self) -> i64; }
Trait for providing the current time.
Returns the current time as milliseconds since the Unix epoch.