[][src]Trait conjure_runtime::raw::BuildRawClient

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

A factory of raw HTTP clients.

Associated Types

type RawClient[src]

The raw client type.

Loading content...

Required methods

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

Creates a new raw client.

Loading content...

Implementors

impl BuildRawClient for DefaultRawClientBuilder[src]

type RawClient = DefaultRawClient

Loading content...