[][src]Module tokio_util::compat

This is supported on feature="compat" only.

Compatibility between the tokio::io and futures-io versions of the AsyncRead and AsyncWrite traits.

Structs

Compatfeature="compat"

A compatibility layer that allows conversion between the tokio::io and futures-io AsyncRead and AsyncWrite traits.

Traits

FuturesAsyncReadCompatExtfeature="compat"

Extension trait that allows converting a type implementing futures_io::AsyncRead to implement tokio::io::AsyncRead.

FuturesAsyncWriteCompatExtfeature="compat"

Extension trait that allows converting a type implementing futures_io::AsyncWrite to implement tokio::io::AsyncWrite.

Tokio02AsyncReadCompatExtfeature="compat"

Extension trait that allows converting a type implementing tokio::io::AsyncRead to implement futures_io::AsyncRead.

Tokio02AsyncWriteCompatExtfeature="compat"

Extension trait that allows converting a type implementing tokio::io::AsyncWrite to implement futures_io::AsyncWrite.