Skip to main content

Clock

Trait Clock 

Source
pub trait Clock: Send + Sync {
    // Required method
    fn now(&self) -> i64;
}
Expand description

Trait for providing the current time.

Required Methods§

Source

fn now(&self) -> i64

Returns the current time as milliseconds since the Unix epoch.

Implementors§