turbo_tasks_fetch/lib.rs
1#![feature(min_specialization)]
2#![feature(arbitrary_self_types)]
3#![feature(arbitrary_self_types_pointers)]
4
5mod client;
6mod error;
7mod response;
8
9pub use crate::{
10 client::{
11 __test_only_reqwest_client_cache_clear, __test_only_reqwest_client_cache_len,
12 FetchClientConfig, ProxyConfig,
13 },
14 error::{FetchError, FetchErrorKind, FetchIssue},
15 response::{FetchResult, HttpResponse, HttpResponseBody},
16};