pub trait Clock {
type Instant: Reference;
// Required method
fn now(&self) -> Self::Instant;
}Expand description
A time source used by rate limiters.
pub trait Clock {
type Instant: Reference;
// Required method
fn now(&self) -> Self::Instant;
}A time source used by rate limiters.