async_rate_limit/lib.rs
1//! Common traits for specific rate limiting, with implementations of common rate limiting schemes.
2//!
3//! These traits and implementations were developed for a single set of use cases, and as
4//! such may be missing behavior you would like to see implemented. Please reach out!
5
6pub mod limiters;
7pub mod sliding_window;
8pub mod token_bucket;