pub trait BuildRawClient {
    type RawClient;
    fn build_raw_client(
        &self,
        builder: &Builder<Self>
    ) -> Result<Self::RawClient, Error>
    where
        Self: Sized
; }
Expand description

A factory of raw HTTP clients.

Associated Types

The raw client type.

Required methods

Creates a new raw client.

Implementors