qiniu-http-client 0.2.4

Qiniu HTTP Client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod sync_cache;
mod traits;

#[cfg(feature = "async")]
mod async_cache;

pub(crate) use traits::CacheController;

#[cfg(feature = "async")]
pub(crate) use traits::AsyncCacheController;

pub(super) use sync_cache::Cache;
pub(super) use traits::IsCacheValid;

#[cfg(feature = "async")]
pub(super) use async_cache::AsyncCache;