Struct RateLimits

Source
pub struct RateLimits { /* private fields */ }
Expand description

A collection of scoped rate limits.

RateLimits manages a set of active rate limits that can be checked against incoming data.

The collection can be empty, indicated by is_ok, meaning no rate limits are currently active.

Implementations§

Source§

impl RateLimits

Source

pub fn new() -> Self

Creates an empty RateLimits instance.

Source

pub fn add(&mut self, limit: RateLimit)

Adds a limit to this collection.

If a rate limit with an overlapping scope already exists, the retry_after count is merged with the existing limit. Otherwise, the new rate limit is added.

Source

pub fn merge(&mut self, limits: Self)

Merges all limits from another RateLimits instance into this one.

This keeps all existing rate limits, adds new ones, and updates any existing ones with a later expiration time. The resulting collection contains the maximum constraints from both instances.

Source

pub fn is_ok(&self) -> bool

Returns true if this instance contains no active limits.

This is the opposite of is_limited.

Source

pub fn is_limited(&self) -> bool

Returns true if this instance contains any active rate limits.

A rate limit is considered active if it has not yet expired.

Source

pub fn clean_expired(&mut self, now: Instant)

Removes expired rate limits from this instance.

This is useful for cleaning up rate limits that are no longer relevant, reducing memory usage and improving performance of subsequent operations.

Source

pub fn check(&self, scoping: ItemScoping) -> Self

Checks whether any rate limits apply to the given scoping.

Returns a new RateLimits instance containing only the rate limits that match the provided ItemScoping. If no limits match, the returned instance will be empty and is_ok will return true.

Source

pub fn check_with_quotas<'a>( &self, quotas: impl IntoIterator<Item = &'a Quota>, scoping: ItemScoping, ) -> Self

Checks whether any rate limits or static quotas apply to the given scoping.

This is similar to check, but additionally checks for quotas with a static limit of 0, which reject items even if there is no active rate limit in this instance.

Returns a new RateLimits instance containing the rate limits that match the provided ItemScoping. If no limits or quotas match, the returned instance will be empty.

Source

pub fn iter(&self) -> RateLimitsIter<'_>

Returns an iterator over all rate limits in this collection.

Source

pub fn longest(&self) -> Option<&RateLimit>

Returns the rate limit with the latest expiration time.

If multiple rate limits have the same expiration time, any of them may be returned. If the collection is empty, returns None.

Source

pub fn is_empty(&self) -> bool

Returns true if there are no rate limits in this collection.

Note that an empty collection is not the same as having no active limits. Use is_ok to check if there are no active limits.

Trait Implementations§

Source§

impl Clone for RateLimits

Source§

fn clone(&self) -> RateLimits

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RateLimits

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RateLimits

Source§

fn default() -> RateLimits

Returns the “default value” for a type. Read more
Source§

impl<'a> IntoIterator for &'a RateLimits

Source§

type IntoIter = RateLimitsIter<'a>

Which kind of iterator are we turning this into?
Source§

type Item = &'a RateLimit

The type of the elements being iterated over.
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl IntoIterator for RateLimits

Source§

type IntoIter = RateLimitsIntoIter

Which kind of iterator are we turning this into?
Source§

type Item = RateLimit

The type of the elements being iterated over.
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T