[][src]Struct yukikaze::client::config::DefaultCfg

pub struct DefaultCfg;

Default configuration.

Uses default Config impl.

Connector:

  • When rustls enabled uses hyper_rustls::HttpsConnector
  • Otherwise uses hyper::client::HttpConnector

Trait Implementations

impl Config for DefaultCfg[src]

type Connector = DefaultConnector

Connector type.

type Timer = DefaultTimer

Timer type.

fn new_connector() -> Self::Connector[src]

Creates new connector and returns its instance.

Uses 4 threads by default.

fn decompress() -> bool[src]

Specifies whether to automatically request compressed response. Read more

fn timeout() -> Duration[src]

Specifies request timeout. Read more

fn default_headers(request: &mut Request)[src]

Allows to sets default headers before request is sent out Read more

fn max_redirect_num() -> usize[src]

Returns max number of redirects Read more

fn config_hyper(builder: &mut Builder) -> &mut Builder[src]

Allows to hook hyper's Client configuration. Read more

Auto Trait Implementations

impl Send for DefaultCfg

impl Sync for DefaultCfg

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T