rrw 0.1.2

A crate to easily build clients for REST-APIs.
Documentation
1
2
3
4
5
6
7
8
9
//! Utilities for throttling requests.

mod mechanism;
mod stupid;
mod throttler;

pub use mechanism::ThrottleMechanism;
pub use stupid::StupidThrottle;
pub use throttler::Throttle;