pub trait Timer: Send + Sync { // Provided methods fn update(&self, _d: Duration) { ... } fn update_since(&self, start_time: Instant) { ... } }