[][src]Struct governor::Quota

pub struct Quota { /* fields omitted */ }

A rate-limiting quota.

Quotas are expressed in a positive number of "cells" (the maximum number of positive decisions / allowed items until the rate limiter needs to replenish) and the amount of time for the rate limiter to replenish a single cell.

Neither the number of cells nor the replenishment unit of time may be zero.

Burst sizes

There are multiple ways of expressing the same quota: a quota given as Quota::per_second(1) allows, on average, the same number of cells through as a quota given as Quota::per_minute(60). However, the quota of Quota::per_minute(60) has a burst size of 60 cells, meaning it is possible to accommodate 60 cells in one go, followed by a minute of waiting.

Burst size gets really important when you construct a rate limiter that should allow multiple elements through at one time (using RateLimiter.check_n and its related functions): Only at most as many cells can be let through in one call as are given as the burst size.

In other words, the burst size is the maximum number of cells that the rate limiter will ever allow through without replenishing them.

Examples

Construct a quota that allows 50 cells per second (replenishing at a rate of one cell per 20 milliseconds), with a burst size of 50 cells, allowing a full rate limiter to allow 50 cells through at a time:

let q = Quota::per_second(nonzero!(50u32));
assert_eq!(q, Quota::per_second(nonzero!(50u32)).allow_burst(nonzero!(50u32)));
assert_eq!(q.replenish_interval(), Duration::from_millis(20));
assert_eq!(q.burst_size().get(), 50);
// The Quota::new constructor is deprecated, but this constructs the equivalent quota:
#[allow(deprecated)]
assert_eq!(q, Quota::new(nonzero!(50u32), Duration::from_secs(1)).unwrap());

Construct a quota that allows 2 cells per hour through (replenishing at a rate of one cell per 30min), but allows bursting up to 90 cells at once:

let q = Quota::per_hour(nonzero!(2u32)).allow_burst(nonzero!(90u32));
assert_eq!(q.replenish_interval(), Duration::from_secs(30 * 60));
assert_eq!(q.burst_size().get(), 90);
// The entire maximum burst size will be restored if no cells are let through for 45 hours:
assert_eq!(q.burst_size_replenished_in(), Duration::from_secs(60 * 60 * (90 / 2)));

Implementations

impl Quota[src]

Constructors for Quotas

pub const fn per_second(max_burst: NonZeroU32) -> Quota[src]

Construct a quota for a number of cells per second. The given number of cells is also assumed to be the maximum burst size.

pub const fn per_minute(max_burst: NonZeroU32) -> Quota[src]

Construct a quota for a number of cells per 60-second period. The given number of cells is also assumed to be the maximum burst size.

pub const fn per_hour(max_burst: NonZeroU32) -> Quota[src]

Construct a quota for a number of cells per 60-minute (3600-second) period. The given number of cells is also assumed to be the maximum burst size.

pub fn with_period(replenish_1_per: Duration) -> Option<Quota>[src]

Construct a quota that replenishes one cell in a given interval.

This constructor is meant to replace ::new, in cases where a longer refresh period than 1 cell/hour is necessary.

If the time interval is zero, returns None.

Example

// Replenish one cell per day, with a burst capacity of 10 cells:
let _quota = Quota::with_period(Duration::from_secs(60 * 60 * 24))
    .unwrap()
    .allow_burst(nonzero!(10u32));

pub const fn allow_burst(self, max_burst: NonZeroU32) -> Quota[src]

Adjusts the maximum burst size for a quota to construct a rate limiter with a capacity for at most the given number of cells.

pub fn new(max_burst: NonZeroU32, replenish_all_per: Duration) -> Option<Quota>[src]

👎 Deprecated since 0.2.0:

This constructor is often confusing and non-intuitive. Use the per_(interval) / with_period and max_burst constructors instead.

Construct a quota for a given burst size, replenishing the entire burst size in that given unit of time.

Returns None if the duration is zero.

This constructor allows greater control over the resulting quota, but doesn't make as much intuitive sense as other methods of constructing the same quotas. Unless your quotas are given as "max burst size, and time it takes to replenish that burst size", you are better served by the Quota::per_second (and similar) constructors with the allow_burst modifier.

impl Quota[src]

Retrieving information about a quota

pub const fn replenish_interval(&self) -> Duration[src]

The time it takes for a rate limiter with an exhausted burst budget to replenish a single element.

pub const fn burst_size(&self) -> NonZeroU32[src]

The maximum number of cells that can be allowed in one burst.

pub const fn burst_size_replenished_in(&self) -> Duration[src]

The time it takes to replenish the entire maximum burst size.

Trait Implementations

impl Clone for Quota[src]

impl Copy for Quota[src]

impl Debug for Quota[src]

impl Eq for Quota[src]

impl PartialEq<Quota> for Quota[src]

impl StructuralEq for Quota[src]

impl StructuralPartialEq for Quota[src]

Auto Trait Implementations

impl RefUnwindSafe for Quota

impl Send for Quota

impl Sync for Quota

impl Unpin for Quota

impl UnwindSafe for Quota

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> 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>,