pub trait TimeProvider {
    fn now(&self) -> u64;
}
Expand description

Providing current time in seconds

Required methods

Returns timestamp (in seconds since epoch)

Implementors