pub trait SystemTimeEx {
    // Required methods
    fn now() -> SystemTime;
    fn elapsed(&self) -> Result<Duration, SystemTimeError>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§