Struct hyper::client::response::Response
[-] [+]
[src]
pub struct Response<S = HttpStream> { pub status: StatusCode, pub headers: Headers, pub version: HttpVersion, // some fields omitted }
A response for a client request to a remote server.
Fields
status | The status from the server. |
headers | The headers from the server. |
version | The HTTP version of this response from the server. |
Methods
impl Response
fn new(stream: Box<NetworkStream + Send>) -> HttpResult<Response>
Creates a new response from a server.
fn status_raw(&self) -> &RawStatus
Get the raw status code and reason.
fn into_inner(self) -> Box<NetworkStream + Send>
Consumes the Request to return the NetworkStream underneath.