[][src]Function isahc::send_async

pub fn send_async<B: Into<Body>>(request: Request<B>) -> ResponseFuture<'static>

Notable traits for ResponseFuture<'_>

impl<'_> Future for ResponseFuture<'_> type Output = Result<Response<Body>, Error>;

Send an HTTP request and return the HTTP response asynchronously.

The request is executed using a shared HttpClient instance. See HttpClient::send_async for details.