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.

Trait Implementations

impl<S: Send> Send for Response<S>

impl Read for Response

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<(), Error>

fn read_to_string(&mut self, buf: &mut String) -> Result<(), Error>