tower_limit/concurrency/
mod.rs

1
2
3
4
5
6
7
8
//! Limit the max number of requests being concurrently processed.

pub mod future;
mod layer;
mod service;
mod sync;

pub use self::{layer::ConcurrencyLimitLayer, service::ConcurrencyLimit};