Trait BuildRawClient

Source
pub trait BuildRawClient {
    type RawClient;

    // Required method
    fn build_raw_client(
        &self,
        builder: &Builder<Complete<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<Complete<Self>>, ) -> Result<Self::RawClient, Error>
where Self: Sized,

Creates a new raw client.

Implementors§