pub trait Clock: Send + Sync {
// Required method
fn now_ms(&self) -> u64;
}Expand description
Source of wall-clock time, injectable for tests.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".