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

pub struct Client { /* fields omitted */ }

A Client to use additional features with Requests.

Clients can handle things such as: redirect policy, connection pooling.

Methods

impl Client
[src]

Create a new Client.

Create a new Client with a configured Pool Config.

Create a Client with an HTTP proxy to a (host, port).

Create a Client using a proxy with a custom connector and SSL client.

Create a new client with a specific connector.

Create a new client with a specific Protocol.

Set the RedirectPolicy.

Set the read timeout value for all requests.

Set the write timeout value for all requests.

Build a Get request.

Build a Head request.

Build a Patch request.

Build a Post request.

Build a Put request.

Build a Delete request.

Build a new request using this Client.

Trait Implementations

impl Debug for Client
[src]

Formats the value using the given formatter.

impl Default for Client
[src]

Returns the "default value" for a type. Read more