[][src]Struct leaky_bucket::LeakyBuckets

pub struct LeakyBuckets { /* fields omitted */ }

Coordinator for rate limiters. Is used to create new rate limiters as needed.

Methods

impl LeakyBuckets[src]

pub fn new() -> Self[src]

Construct a new coordinator for rate limiters.

pub async fn coordinate(self) -> Result<(), Error>[src]

Run the coordinator.

pub fn rate_limiter(&self) -> Builder[src]

Construct a new rate limiter.

Trait Implementations

impl Default for LeakyBuckets[src]

impl Clone for LeakyBuckets[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]