use crate::error::CustomError; #[derive(Debug)] pub(crate) struct ISection {} impl ISection { pub(crate) fn new(section: &organic::types::Section<'_>) -> Result { Ok(ISection {}) } }