pub trait DefaultConstructibleHttpClient: HttpClient {
    // Required method
    fn default() -> Self;
}
Expand description

An HTTP client that has a default configuration.

Required Methods§

source

fn default() -> Self

Creates a new HTTP client with default configuration.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl DefaultConstructibleHttpClient for Hyper

Available on crate feature hyper only.
source§

impl DefaultConstructibleHttpClient for HyperNativeTls

Available on crate features hyper and hyper-native-tls only.
source§

impl DefaultConstructibleHttpClient for Reqwest

Available on crate feature reqwest only.