pub trait BuildRawClient {
    type RawClient;

    // Required method
    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§

source

type RawClient

The raw client type.

Required Methods§

source

fn build_raw_client( &self, builder: &Builder<Self> ) -> Result<Self::RawClient, Error>where Self: Sized,

Creates a new raw client.

Implementors§