Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use self::body::Body;
pub use self::http::{Client, ClientBuilder, HttpVersionPref};
pub use self::request::{Request, RequestBuilder};
pub use self::response::Response;
pub use self::upgrade::Upgraded;

pub mod body;
pub mod decoder;
pub mod http;
#[cfg(feature = "multipart")]
pub mod multipart;
pub(crate) mod request;
mod response;
mod upgrade;
#[cfg(all(feature = "websocket", not(target_arch = "wasm32")))]
pub mod websocket;