use super::object::Object; #[derive(Debug)] pub struct Paragraph<'s> { pub source: &'s str, pub children: Vec>, } #[derive(Debug)] pub struct Comment<'s> { pub source: &'s str, }