Type Definition futures_lite::io::BoxedWriter [−][src]
type BoxedWriter = Pin<Box<dyn AsyncWrite + Send + 'static>>;
Type alias for Pin<Box<dyn AsyncWrite + Send + 'static>>
.
Examples
use futures_lite::io::AsyncWriteExt; let writer = Vec::<u8>::new().boxed_writer();