tower_limit/concurrency/
mod.rs

1//! Limit the max number of requests being concurrently processed.
2
3pub mod future;
4mod layer;
5mod service;
6mod sync;
7
8pub use self::{layer::ConcurrencyLimitLayer, service::ConcurrencyLimit};