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

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

A Client to make outgoing HTTP requests.

Methods

impl Client<HttpConnector, Body>[src]

pub fn new(handle: &Handle) -> Client<HttpConnector, Body>[src]

Create a new Client with the default config.

impl Client<HttpConnector, Body>[src]

pub fn configure() -> Config<UseDefaultConnector, Body>[src]

Configure a Client.

Example


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

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

pub fn get(&self, url: Uri) -> FutureResponse[src]

Send a GET Request using this Client.

pub fn request(&self, req: Request<B>) -> FutureResponse[src]

Send a constructed Request using this Client.

Trait Implementations

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

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

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

type Request = Request<B>

Requests handled by the service.

type Response = Response

Responses given by the service.

type Error = Error

Errors produced by the service.

type Future = FutureResponse

The future response value.

Auto Trait Implementations

impl<C, B = Body> !RefUnwindSafe for Client<C, B>

impl<C, B = Body> !Send for Client<C, B>

impl<C, B = Body> !Sync for Client<C, B>

impl<C, B> Unpin for Client<C, B>

impl<C, B = Body> !UnwindSafe for Client<C, B>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.