Struct hyper::client::RequestBuilder  
            [-]
             [+]
        [src]
pub struct RequestBuilder<'a, U: IntoUrl, C: NetworkConnector + 'a> {
    // 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, C: NetworkConnector> RequestBuilder<'a, U, C>
fn body<B: IntoBody<'a>>(self, body: B) -> RequestBuilder<'a, U, C>
Set a request body to be sent.
fn headers(self, headers: Headers) -> RequestBuilder<'a, U, C>
Add additional headers to the request.
fn header<H: Header + HeaderFormat>(self, header: H) -> RequestBuilder<'a, U, C>
Add an individual new header to the request.
fn send(self) -> HttpResult<Response>
Execute this request and receive a Response back.