Struct hyper::client::client::Client

source ·
pub struct Client<C, B = Body> {
    config: Config,
    conn_builder: Builder,
    connector: C,
    pool: Pool<PoolClient<B>>,
}
Expand description

A Client to make outgoing HTTP requests.

Client is cheap to clone and cloning is the recommended way to share a Client. The underlying connection pool will be reused.

Fields§

§config: Config§conn_builder: Builder§connector: C§pool: Pool<PoolClient<B>>

Implementations§

source§

impl Client<HttpConnector, Body>

source

pub fn new() -> Client<HttpConnector, Body>

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.

source§

impl Client<(), Body>

source

pub fn builder() -> Builder

Create a builder to configure a new Client.

Example
use std::time::Duration;
use hyper::Client;

let client = Client::builder()
    .pool_idle_timeout(Duration::from_secs(30))
    .http2_only(true)
    .build_http();
source§

impl<C, B> Client<C, B>where C: Connect + Clone + Send + Sync + 'static, B: HttpBody + Send + 'static, B::Data: Send, B::Error: Into<Box<dyn StdError + Send + Sync>>,

source

pub fn get(&self, uri: Uri) -> ResponseFuture where B: Default,

Send a GET request to the supplied Uri.

Note

This requires that the HttpBody type have a Default implementation. It should return an “empty” version of itself, such that HttpBody::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"));
source

pub fn request(&self, req: Request<B>) -> ResponseFuture

Send a constructed Request using this Client.

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

let client = Client::new();

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

let future = client.request(req);
source

async fn retryably_send_request( self, req: Request<B>, pool_key: (Scheme, Authority) ) -> Result<Response<Body>>

source

async fn send_request( &self, req: Request<B>, pool_key: (Scheme, Authority) ) -> Result<Response<Body>, ClientError<B>>

source

async fn connection_for( &self, pool_key: (Scheme, Authority) ) -> Result<Pooled<PoolClient<B>>, ClientConnectError>

source

fn connect_to( &self, pool_key: (Scheme, Authority) ) -> impl Lazy<Output = Result<Pooled<PoolClient<B>>>> + Unpin

Trait Implementations§

source§

impl<C: Clone, B> Clone for Client<C, B>

source§

fn clone(&self) -> Client<C, B>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Client<HttpConnector, Body>

source§

fn default() -> Client<HttpConnector, Body>

Returns the “default value” for a type. Read more
source§

impl<C, B> Service<Request<B>> for &Client<C, B>where C: Connect + Clone + Send + Sync + 'static, B: HttpBody + Send + 'static, B::Data: Send, B::Error: Into<Box<dyn StdError + Send + Sync>>,

§

type Response = Response<Body>

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = ResponseFuture

The future response value.
source§

fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request<B>) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl<C, B> Service<Request<B>> for Client<C, B>where C: Connect + Clone + Send + Sync + 'static, B: HttpBody + Send + 'static, B::Data: Send, B::Error: Into<Box<dyn StdError + Send + Sync>>,

§

type Response = Response<Body>

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = ResponseFuture

The future response value.
source§

fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request<B>) -> Self::Future

Process the request and return the response asynchronously. Read more

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, B1, B2> HttpService<B1> for Twhere T: Service<Request<B1>, Response = Response<B2>>, B2: Body, <T as Service<Request<B1>>>::Error: Into<Box<dyn Error + Sync + Send, Global>>,

§

type ResBody = B2

The HttpBody body of the http::Response.
§

type Error = <T as Service<Request<B1>>>::Error

The error type that can occur within this Service. Read more
§

type Future = <T as Service<Request<B1>>>::Future

The Future returned by this Service.
source§

fn poll_ready( &mut self, cx: &mut Context<'_> ) -> Poll<Result<(), <T as HttpService<B1>>::Error>>

source§

fn call(&mut self, req: Request<B1>) -> <T as HttpService<B1>>::Future

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<S, Target> Sealed<(Target,)> for Swhere S: Service<Target>,

source§

impl<T, B1, B2> Sealed<B1> for Twhere T: Service<Request<B1>, Response = Response<B2>>, B2: Body,