pub trait Clock { // Required method fn now_ticks(&self) -> u64; }
Clock abstraction for deterministic time in tests and production.
Returns the current tick count.