Skip to main content

LocalRateLimiterProvider

Struct LocalRateLimiterProvider 

Source
pub struct LocalRateLimiterProvider { /* private fields */ }
Available on crate feature trypema only.
Expand description

Provider for in-process rate limiting strategies.

Exposes AbsoluteLocalRateLimiter and SuppressedLocalRateLimiter under one shared configuration.

§Strategies

  • Absolute: Best-effort sliding-window allow/reject admission
  • Suppressed: Probabilistic suppression for graceful degradation

§Thread Safety

All strategies are thread-safe and designed for concurrent use.

§Examples

use trypema::RateLimit;

let rate = RateLimit::per_second(10.0).unwrap();
let abs_decision = rl.absolute().inc("user_123", &rate, 1);
let sup_decision = rl.suppressed().inc("user_456", &rate, 1);

Implementations§

Source§

impl LocalRateLimiterProvider

Source

pub fn builder() -> LocalRateLimiterBuilder

Create builder using default validated configuration.

Source

pub fn start_cleanup_loop(self: &Arc<LocalRateLimiterProvider>)

Start stale-state cleanup. Calling while already running is no-op.

Source

pub fn stop_cleanup_loop(&self)

Stop stale-state cleanup. Calling while stopped is no-op.

Source

pub fn absolute(&self) -> &AbsoluteLocalRateLimiter

Access the absolute strategy.

Returns the absolute local limiter. Admission is allow/reject and best-effort under concurrency; concurrent callers may temporarily overshoot.

See AbsoluteLocalRateLimiter for full documentation.

§Examples
use trypema::{RateLimit, RateLimitDecision};

let rate = RateLimit::per_second(10.0).unwrap();
let decision = rl.absolute().inc("user_123", &rate, 1);
assert!(matches!(decision, RateLimitDecision::Allowed));
Source

pub fn suppressed(&self) -> &SuppressedLocalRateLimiter

Access the suppressed strategy.

Returns a reference to the suppressed local rate limiter, which provides probabilistic suppression for graceful degradation under load.

Returns RateLimitDecision::Suppressed with suppression metadata.

See SuppressedLocalRateLimiter for full documentation.

§Examples
use trypema::{RateLimit, RateLimitDecision};

let rate = RateLimit::per_second(10.0).unwrap();
match rl.suppressed().inc("user_123", &rate, 1) {
    RateLimitDecision::Suppressed { is_allowed, suppression_factor, .. } => {
        println!("suppression: {suppression_factor}, allowed: {is_allowed}");
    }
    RateLimitDecision::Allowed => {}
    RateLimitDecision::Rejected { .. } => unreachable!(),
}

Trait Implementations§

Source§

impl Debug for LocalRateLimiterProvider

Source§

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

Formats the value using the given formatter. 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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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, 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.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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