(&mut self)
| 410 | } |
| 411 | |
| 412 | impl HttpClient { |
| 413 | pub fn new() -> Self { |
| 414 | Self::with_config(HttpConfig::default()) |
| 415 | } |
| 416 | |
| 417 | pub fn with_config(config: HttpConfig) -> Self { |
| 418 | Self::with_config_and_queue(config, HttpQueueConfig::default()) |
| 419 | } |