Trait tokio_util::compat::FuturesAsyncWriteCompatExt
source · pub trait FuturesAsyncWriteCompatExt: AsyncWrite {
// Provided method
fn compat_write(self) -> Compat<Self>
where Self: Sized { ... }
}
Expand description
Extension trait that allows converting a type implementing
futures_io::AsyncWrite
to implement tokio::io::AsyncWrite
.
Provided Methods§
sourcefn compat_write(self) -> Compat<Self>where
Self: Sized,
fn compat_write(self) -> Compat<Self>where
Self: Sized,
Wraps self
with a compatibility layer that implements
tokio::io::AsyncWrite
.