Trait tokio_util::compat::FuturesAsyncReadCompatExt[][src]

pub trait FuturesAsyncReadCompatExt: AsyncRead {
    fn compat(self) -> Compat<Self>
    where
        Self: Sized
, { ... } }
This is supported on crate feature compat only.
Expand description

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

Provided methods

Wraps self with a compatibility layer that implements tokio_io::AsyncRead.

Implementors