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.

Required Associated Types

The raw client type.

Required Methods

Creates a new raw client.

Implementors