[][src]Trait tokio_util::compat::TokioAsyncReadCompatExt

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

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

Provided methods

pub fn compat(self) -> Compat<Self> where
    Self: Sized
[src]

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

Loading content...

Implementors

impl<T: AsyncRead> TokioAsyncReadCompatExt for T[src]

Loading content...