Skip to main content

Clock

Trait Clock 

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

Mockable clock trait for fetching millisecond timestamps.

Required Methods§

Source

fn now_ms(&self) -> u64

Returns the current epoch time in milliseconds.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§