Skip to main content

Clock

Trait Clock 

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

Supplies monotonic-enough Unix millisecond timestamps to Code Mode.

Required Methods§

Source

fn now_ms(&self) -> u64

Returns the current Unix timestamp in milliseconds.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§