refactor(http): merge Request and Response from server and client
Request and Response are now visible from:
- hyper::{Request, Response}
- hyper::server::{Request, Response}
- hyper::client::{Request, Response}
They truly exist in the http module, but are re-exported to reduce the number of breaking changes.
request::new and response::new were renamed to ::from_wire to reduce confusion with Request::new
and Response::new. See issue #1126
Request now has an optional Body, because not all requests have bodies.
Use body_ref() to determine if a body exists.
Use body() to take the body, or construct one if no body exists.
Closes #1155
BREAKING CHANGE: Response::body() now consumes the response
			
			
This commit is contained in:
		| @@ -34,12 +34,6 @@ impl Default for Body { | ||||
|     } | ||||
| } | ||||
|  | ||||
| impl Default for Body { | ||||
|     fn default() -> Body { | ||||
|         Body::empty() | ||||
|     } | ||||
| } | ||||
|  | ||||
| impl Stream for Body { | ||||
|     type Item = Chunk; | ||||
|     type Error = ::Error; | ||||
| @@ -114,6 +108,7 @@ impl From<&'static str> for Body { | ||||
| } | ||||
|  | ||||
| impl From<Option<Body>> for Body { | ||||
|     #[inline] | ||||
|     fn from (body: Option<Body>) -> Body { | ||||
|         body.unwrap_or_default() | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user