pub fn sink() -> Sink
Creates a writer that consumes and drops all data.
use futures_lite::io::{self, AsyncWriteExt}; let mut writer = io::sink(); writer.write_all(b"hello").await?;