pub trait Clock {
// Required method
fn timestamp_now(&self) -> u64;
}
Expand description
A clock used for fetching the current timestamp.
Required Methods§
sourcefn timestamp_now(&self) -> u64
fn timestamp_now(&self) -> u64
Get the current timestamp.