[go: up one dir, main page]

tower-limit 0.3.1

Limit maximum request rate to a `Service`.
Documentation
1
2
3
4
5
6
7
//! Limit the rate at which requests are processed.

mod layer;
mod rate;
mod service;

pub use self::{layer::RateLimitLayer, rate::Rate, service::RateLimit};