The client Request now uses the same system as a server Response to track the write status of headers, and the API has been updated accordingly. Additionally, the Request constructors have been moved onto the Request object instead of being top-level hyper functions, as this better namespaces the client and Server.
8 lines
119 B
Rust
8 lines
119 B
Rust
//! HTTP Client
|
|
pub use self::request::Request;
|
|
pub use self::response::Response;
|
|
|
|
pub mod request;
|
|
pub mod response;
|
|
|