pub trait Clock {
// Required methods
fn now(&self) -> Timestamp;
fn today(&self) -> Date;
}Expand description
Injected time source — deterministic in tests.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".