[][src]Struct leaky_bucket::LeakyBuckets

pub struct LeakyBuckets { /* fields omitted */ }

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

Implementations

impl LeakyBuckets[src]

pub fn new() -> Self[src]

Construct a new coordinator for rate limiters.

pub fn coordinate(
    &mut self
) -> Result<impl Future<Output = Result<(), Error>> + 'static, Error>
[src]

Run the coordinator.

Examples

use leaky_bucket::LeakyBuckets;
use std::{error::Error, time::Duration};

let mut buckets = LeakyBuckets::new();
let coordinator = buckets.coordinate()?;

// spawn the coordinate thread to refill the rate limiter.
tokio::spawn(async move { coordinator.await.expect("coordinator errored") });

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

Construct a new rate limiter.

Trait Implementations

impl Default for LeakyBuckets[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.