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

A clock used for fetching the current timestamp.

Required Methods§

source

fn timestamp_now(&self) -> u64

Get the current timestamp.

Implementors§