[][src]Struct ratelimit_meter::algorithms::gcra::NotUntil

pub struct NotUntil<P: Reference>(_);

Returned in case of a negative rate-limiting decision. Indicates the earliest instant that a cell might get accepted again.

To avoid thundering herd effects, client code should always add a random amount of jitter to wait time estimates.

Trait Implementations

impl<P: Reference> NonConformance<P> for NotUntil<P>[src]

impl<P: PartialEq + Reference> PartialEq<NotUntil<P>> for NotUntil<P>[src]

impl<P: Debug + Reference> Debug for NotUntil<P>[src]

impl<P: Reference> Display for NotUntil<P>[src]

Auto Trait Implementations

impl<P> Send for NotUntil<P>

impl<P> Sync for NotUntil<P>

impl<P> Unpin for NotUntil<P> where
    P: Unpin

impl<P> RefUnwindSafe for NotUntil<P> where
    P: RefUnwindSafe

impl<P> UnwindSafe for NotUntil<P> where
    P: UnwindSafe

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> Borrow<T> for T where
    T: ?Sized
[src]

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

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