Expand description
Compatibility between the tokio::io and futures-io versions of the
AsyncRead and AsyncWrite traits.
Structs§
- Compat
- A compatibility layer that allows conversion between the
tokio::ioandfutures-ioAsyncReadandAsyncWritetraits.
Traits§
- Futures
Async Read Compat Ext - Extension trait that allows converting a type implementing
futures_io::AsyncReadto implementtokio::io::AsyncRead. - Futures
Async Write Compat Ext - Extension trait that allows converting a type implementing
futures_io::AsyncWriteto implementtokio::io::AsyncWrite. - Tokio
Async Read Compat Ext - Extension trait that allows converting a type implementing
tokio::io::AsyncReadto implementfutures_io::AsyncRead. - Tokio
Async Write Compat Ext - Extension trait that allows converting a type implementing
tokio::io::AsyncWriteto implementfutures_io::AsyncWrite.