HttpSend

Trait 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§

Source

fn send<S>( self, stream: S, ) -> impl Future<Output = Result<Response<BodyReader>>>
where S: AsyncRead + AsyncWrite + Unpin + Send + 'static,

Sends the Request via stream and returns a future of Response

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.

Implementations on Foreign Types§

Source§

impl HttpSend for Request<BodyReader>

Source§

fn send<S>( self, stream: S, ) -> impl Future<Output = Result<Response<BodyReader>>>
where S: AsyncRead + AsyncWrite + Unpin + Send + 'static,

Implementors§