pub fn sink() -> Sink
Available on crate feature
std
only.Expand description
Creates a writer that consumes and drops all data.
ยงExamples
use futures_lite::io::{self, AsyncWriteExt};
let mut writer = io::sink();
writer.write_all(b"hello").await?;