pub trait Time: Sized {
    // Required method
    fn now() -> DurationSinceUnixEpoch;
}
Expand description

Trait for types that can be used as a timestamp clock.

Required Methods§

Implementors§