Skip to main content

Clock

Trait Clock 

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

Clock abstraction for deterministic time in tests and production.

Required Methods§

Source

fn now_ticks(&self) -> u64

Returns the current tick count.

Implementors§