1 2 3 4 5 6 7 8 9 10
use pulldown_cmark::CowStr; use crate::Debug; impl Debug for CowStr<'_> { fn fmt(&self, f: &mut crate::Formatter) { let s: &str = self; Debug::fmt(&s, f) } }