Available on crate feature 
async only.Expand description
Asynchronous HTTP client interface.
This module provides the interfaces and types necessary for asynchronous HTTP client implementations in nyquest.
Re-exports§
- pub use futures_io;
Enums§
- BoxedStream 
- A boxed async stream type that can either be sized or unsized.
Traits§
- AnyAsyncBackend 
- Trait for type-erased async backend implementations.
- AnyAsyncClient 
- Trait for type-erased async HTTP clients.
- AnyAsyncResponse 
- Trait for type-erased async HTTP responses.
- AsyncBackend 
- Trait for asynchronous HTTP backend implementations.
- AsyncClient 
- Trait for asynchronous HTTP clients.
- AsyncResponse 
- Trait for asynchronous HTTP responses.
- SizedBody Stream 
- Trait for seekable async body streams with a known size.
- UnsizedBody Stream 
- Trait for unsized async body streams that do not support seeking.