pub trait Provider: 'static {
    type Limits: 'static + Limiter;
    type Error: Display;

    fn start(self) -> Result<Self::Limits, Self::Error>;
}

Required Associated Types

Required Methods

Starts the token provider

Implementors