proxy_fetch 0.1.12

A smart proxy management library for Rust, engineered for high-availability and fault-tolerant network requests. / 一个为 Rust 设计的智能代理管理库,专为高可用和容错的网络请求而构建。
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(doc_auto_cfg)]
#![feature(doc_cfg)]

mod error;
mod fetch;
mod load;
mod proxy;
mod refresh;
mod response;

pub use self::{
  error::{Error, Result},
  fetch::Fetch,
  load::load,
  proxy::Proxy,
  refresh::refresh_li,
  response::Response,
};