1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
//^ //^ HEAD //^ //> HEAD -> CORE use core::fmt::{ Display, Formatter, Result as Format }; //^ //^ ISSUE //^ //> ISSUE -> STRUCT #[derive(Clone)] pub struct Issue(pub &'static str); //> ISSUE -> DISPLAY impl Display for Issue { fn fmt(&self, formatter: &mut Formatter<'_>) -> Format {write!(formatter, "{}", self.0)} }