[][src]Trait tokio_util::compat::TokioAsyncWriteCompatExt

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

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

Provided methods

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

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

Loading content...

Implementors

impl<T: AsyncWrite> TokioAsyncWriteCompatExt for T[src]

Loading content...