Clock

Trait Clock 

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

Represents a clock that provides the current time.

Required Methods§

Source

fn now(&self) -> Time

Returns the current time.

Implementors§