pub trait TimeSource<I: TimeInstant> { // Required method fn now(&self) -> I; }
Trait for abstracting time sources.
Returns the current time instant.