use crate::error::CustomError; use super::Object; #[derive(Debug)] pub(crate) struct Heading { title: Vec, } impl Heading { pub(crate) fn new(heading: &organic::types::Heading<'_>) -> Result { Ok(Heading { title: Vec::new() }) } }