[][src]Struct twilight_http::ratelimiting::Ratelimiter

pub struct Ratelimiter { /* fields omitted */ }

Implementations

impl Ratelimiter[src]

pub fn new() -> Self[src]

Create a new ratelimiter.

Most users won't need to use this directly. If you're creating your own HTTP proxy then this is good to use for your own ratelimiting.

pub async fn get(
    &self,
    path: Path
) -> Receiver<Sender<Option<RatelimitHeaders>>>
[src]

pub async fn time_until_available(&self, path: &Path) -> Option<Duration>[src]

Provide an estimate for the time left until a path can be used without being ratelimited.

This method is not guaranteed to be accurate and may return None if either no ratelimit is known or buckets are remaining.

Trait Implementations

impl Clone for Ratelimiter[src]

impl Debug for Ratelimiter[src]

impl Default for Ratelimiter[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,