Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
a751cfcbec02dcea38504d5091b11c357d984c25
/
.
/
crates
/
tower
/
src
/
limit
/
rate
/
mod.rs
blob: 52b179b8c00cb7dceabc9dfba3f9e2465555a68d [
file
] [
log
] [
blame
]
//! Limit the rate at which requests are processed.
mod
layer
;
#[
allow
(
clippy
::
module_inception
)]
mod
rate
;
mod
service
;
pub
use
self
::{
layer
::
RateLimitLayer
,
rate
::
Rate
,
service
::
RateLimit
};