pub trait OwnedWrite: Write {
    fn write(
        &mut self,
        buf: OwnedBuf
    ) -> impl Future<Output = (OwnedBuf, Result<()>)>; async fn write_all(&mut self, buf: OwnedBuf) -> (OwnedBuf, Result<()>) { ... } }

Required Methods

Provided Methods

Implementors