1 2 3 4 5 6 7 8
//! Limit the rate at which requests are processed.
mod layer;
#[allow(clippy::module_inception)]
mod rate;
mod service;
pub use self::{layer::RateLimitLayer, rate::Rate, service::RateLimit};
1 2 3 4 5 6 7 8
//! Limit the rate at which requests are processed.
mod layer;
#[allow(clippy::module_inception)]
mod rate;
mod service;
pub use self::{layer::RateLimitLayer, rate::Rate, service::RateLimit};