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

An HTTP client that has a default configuration.

Required Methods

Creates a new HTTP client with default configuration.

Implementors