pub trait DefaultConstructibleHttpClient: HttpClient {
// Required method
fn default() -> Self;
}
Expand description
An HTTP client that has a default configuration.
Required Methods§
Implementors§
impl DefaultConstructibleHttpClient for Hyper
Available on crate feature
hyper
only.impl DefaultConstructibleHttpClient for HyperNativeTls
Available on crate features
hyper
and hyper-native-tls
only.impl DefaultConstructibleHttpClient for Reqwest
Available on crate feature
reqwest
only.