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