1 2 3 4 5 6 7 8
pub struct Endl; impl std::fmt::Display for Endl { #[inline] fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { writeln!(fmt) } }