1 2 3 4 5 6
use std::io::Write; pub(crate) trait AsWrite { #[expect(clippy::needless_lifetimes)] fn as_write<'a>(&'a mut self) -> impl Write + 'a; }