pub trait Clock { // Required method fn now(&self) -> Time; }
Represents a clock that provides the current time.
Returns the current time.