pub trait MakeClientBuilder: Sized {
// Provided method
fn builder() -> HttpClientBuilder<Self> { ... }
}
Expand description
A trait to implement a builder for a Fuchsia compatible hyper client configured for either only HTTP or both HTTP and HTTPS requests.
Provided Methods§
fn builder() -> HttpClientBuilder<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.