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.

Associated Types

The hyper connector that the resulting hyper client will use.

Required methods

Create a hyper::Client

Implementations on Foreign Types

Implementors