1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-25 08:52:42 +01:00
actix-web/src/client/mod.rs

18 lines
420 B
Rust
Raw Normal View History

//! Http client api
2018-11-12 08:12:54 +01:00
mod connect;
mod connection;
mod connector;
mod error;
2019-01-29 05:41:09 +01:00
mod h1proto;
mod h2proto;
2018-11-12 08:12:54 +01:00
mod pool;
mod request;
mod response;
2018-11-12 08:12:54 +01:00
pub use self::connect::Connect;
2019-01-29 19:34:27 +01:00
pub use self::connection::Connection;
2018-11-12 08:12:54 +01:00
pub use self::connector::Connector;
2018-11-14 07:53:30 +01:00
pub use self::error::{ConnectorError, InvalidUrlKind, SendRequestError};
2018-11-16 07:34:29 +01:00
pub use self::request::{ClientRequest, ClientRequestBuilder};
2018-11-28 07:12:04 +01:00
pub use self::response::ClientResponse;