Trait governor::clock::Clock[][src]

pub trait Clock: Clone {
    type Instant: Reference;
    fn now(&self) -> Self::Instant;
}
Expand description

A time source used by rate limiters.

Associated Types

A measurement of a monotonically increasing clock.

Required methods

Returns a measurement of the clock.

Implementors