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>) -> Result<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 Read for Response

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

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

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

fn by_ref(&mut self) -> &mut Self

fn bytes(self) -> Bytes<Self>

fn chars(self) -> Chars<Self>

fn chain<R>(self, next: R) -> Chain<Self, R> where R: Read

fn take(self, limit: u64) -> Take<Self>

fn tee<W>(self, out: W) -> Tee<Self, W> where W: Write

Derived Implementations

impl<S: Debug> Debug for Response<S> where S: Debug

fn fmt(&self, __arg_0: &mut Formatter) -> Result