1 2 3 4 5 6 7 8 9
use super::*; use std::fmt::{Display, Formatter}; impl Display for BreakPoint { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { writeln!(f, "@media (min-width: {}px) {{", self.width)?; f.write_str("}") } }