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

pub mod future;
mod layer;
mod service;

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

type Error = Box<dyn std::error::Error + Send + Sync>;