pub trait Clock: Send + Sync { // Required methods fn now_instant(&self) -> Instant; fn now_utc(&self) -> DateTime<Utc>; }