pub trait TimeAsSecs: UnixTime {
    // Provided method
    fn now() -> Seconds { ... }
}
Expand description

Trait to obtain the time as seconds

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: UnixTime> TimeAsSecs for T