Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
0d5c23f0c3fda3b89d25b270ca064d30e494aeb2
/
.
/
crates
/
tower
/
src
/
limit
/
mod.rs
blob: 6a10dcaedca1bbcedbe2a0b03d10e2a6a7eae104 [
file
] [
log
] [
blame
]
//! Tower middleware for limiting requests.
pub
mod
concurrency
;
pub
mod
rate
;
pub
use
self
::{
concurrency
::{
ConcurrencyLimit
,
ConcurrencyLimitLayer
,
GlobalConcurrencyLimitLayer
},
rate
::{
RateLimit
,
RateLimitLayer
},
};