pulith-fetch 0.2.0

HTTP downloading with streaming verification and atomic placement
Documentation
1
2
3
4
5
6
7
8
9
//! Rate control: limiting, backoff, and throttling.  

pub mod backoff;
pub mod bandwidth;
pub mod throttled;

pub use backoff::retry_delay;
pub use bandwidth::{AdaptiveConfig, RateMetrics, TokenBucket};
pub use throttled::{AsyncThrottledStream, ThrottledStream};