use super::IHeading; use super::ISection; #[derive(Debug)] pub(crate) enum IDocumentElement { Heading(IHeading), Section(ISection), }