pub trait HttpSend {
// Required method
fn send<S>(
self,
stream: S,
) -> impl Future<Output = Result<Response<BodyReader>>>
where S: AsyncRead + AsyncWrite + Unpin + Send + 'static;
}Expand description
An asynchronous Client to make http Requests with.
Required Methods§
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.