1//! Limit the rate at which requests are processed. 2 3mod layer; 4mod rate; 5mod service; 6 7pub use self::{layer::RateLimitLayer, rate::Rate, service::RateLimit};