1 2 3 4 5 6 7 8
use super::*; impl Display for QuoteBlock { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { writeln!(f, "< quote>")?; writeln!(f, "</quote>") } }