Skip to main content

TimeSource

Trait TimeSource 

Source
pub trait TimeSource {
    // Required method
    fn now_ms(&self) -> u64;
}
Expand description

Source of monotonic time.

Required Methods§

Source

fn now_ms(&self) -> u64

Returns the current time in milliseconds.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§