Trait futures_http::client::HttpSend
source · 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§
Object Safety§
This trait is not object safe.