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