Struct hyper::client::RequestBuilder [] [src]

pub struct RequestBuilder<'a, U: IntoUrl> {
    // some fields omitted
}

Options for an individual Request.

One of these will be built for you if you use one of the convenience methods, such as get(), post(), etc.

Methods

impl<'a, U: IntoUrl> RequestBuilder<'a, U>
[src]

fn body<B: Into<Body<'a>>>(self, body: B) -> RequestBuilder<'a, U>

Set a request body to be sent.

fn headers(self, headers: Headers) -> RequestBuilder<'a, U>

Add additional headers to the request.

fn header<H: Header + HeaderFormat>(self, header: H) -> RequestBuilder<'a, U>

Add an individual new header to the request.

fn send(self) -> Result<Response>

Execute this request and receive a Response back.