Struct hyper::client::Client [] [src]

pub struct Client<C, B = Body> { /* fields omitted */ }

A Client to make outgoing HTTP requests.

Methods

impl Client<HttpConnector, Body>
[src]

[src]

Create a new Client with the default config.

impl Client<HttpConnector, Body>
[src]

[src]

Configure a Client.

Example


let client = hyper::Client::configure()
    .keep_alive(true)
    .build(&handle);

impl<C, B> Client<C, B>
[src]

[src]

Return a reference to a handle to the event loop this Client is associated with.

impl<C, B> Client<C, B> where
    C: Connect,
    B: Stream<Error = Error> + 'static,
    B::Item: AsRef<[u8]>, 
[src]

[src]

Send a GET Request using this Client.

[src]

Send a constructed Request using this Client.

Trait Implementations

impl<C, B> Service for Client<C, B> where
    C: Connect,
    B: Stream<Error = Error> + 'static,
    B::Item: AsRef<[u8]>, 
[src]

Requests handled by the service.

Responses given by the service.

Errors produced by the service.

The future response value.

[src]

Process the request and return the response asynchronously.

impl<C: Clone, B> Clone for Client<C, B>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<C, B> Debug for Client<C, B>
[src]

[src]

Formats the value using the given formatter.