[][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() -> Client<HttpConnector, Body>[src]

Create a new Client with the default config.

Note

The default connector does not handle TLS. Speaking to https destinations will require configuring a connector that implements TLS.

impl Client<(), Body>[src]

pub fn builder() -> Builder[src]

Create a builder to configure a new Client.

Example

use hyper::Client;

let client = Client::builder()
    .keep_alive(true)
    .http2_only(true)
    .build_http();

impl<C, B> Client<C, B> where
    C: Connect + Clone + Send + Sync + 'static,
    B: Payload + Send + 'static,
    B::Data: Send
[src]

Important traits for ResponseFuture
pub fn get(&self, uri: Uri) -> ResponseFuture where
    B: Default
[src]

Send a GET request to the supplied Uri.

Note

This requires that the Payload type have a Default implementation. It should return an "empty" version of itself, such that Payload::is_end_stream is true.

Example

use hyper::{Client, Uri};

let client = Client::new();

let future = client.get(Uri::from_static("http://httpbin.org/ip"));

Important traits for ResponseFuture
pub fn request(&self, req: Request<B>) -> ResponseFuture[src]

Send a constructed Request using this Client.

Example

use hyper::{Body, Client, Request};

let client = Client::new();

let req = Request::builder()
    .method("POST")
    .uri("http://httpin.org/post")
    .body(Body::from("Hallo!"))
    .expect("request builder");

let future = client.request(req);

Trait Implementations

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

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

impl Default for Client<HttpConnector, Body>[src]

impl<C, B> Service<Request<B>> for Client<C, B> where
    C: Connect + Clone + Send + Sync + 'static,
    B: Payload + Send + 'static,
    B::Data: Send
[src]

type Response = Response<Body>

Responses given by the service.

type Error = Error

Errors produced by the service.

type Future = ResponseFuture

The future response value.

Auto Trait Implementations

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

impl<C, B> Send for Client<C, B> where
    B: Send,
    C: Send

impl<C, B> Sync for Client<C, B> where
    B: Send,
    C: Sync

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

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.