pub trait HyperClientBuilder {
    type Connector: Connect + Clone + Send + Sync + 'static;

    fn build_hyper_client(self) -> Client<Self::Connector>;
}
Expand description

A trait implemented for any hyper::Client as well as the DefaultHyperClient.

Required Associated Types

The hyper connector that the resulting hyper client will use.

Required Methods

Create a hyper::Client

Implementations on Foreign Types

Implementors