pub trait Clock {
    fn get_time(&self) -> Timestamp;
}
Expand description

A Clock is a source of Timestamps.

Required Methods

Returns the current Timestamp

Implementations on Foreign Types

Implementors