Trait AsyncWrite

Source
pub trait AsyncWrite: for<'a> AsyncWriteWith<'a> { }
Expand description

Write bytes to a source asynchronously.

This is an async version of std::io::Write.

You should not implement this trait manually, instead implement AsyncWriteWith.

Implementors§

Source§

impl<T: for<'a> AsyncWriteWith<'a> + ?Sized> AsyncWrite for T