pub trait SectionProcessor {
// Required methods
fn section_key(&self) -> &'static str;
fn process(
&self,
content: &Value,
model: &mut EspforgeConfiguration,
) -> Result<()>;
// Provided method
fn priority(&self) -> u32 { ... }
}