pub trait ConfigNibbler: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn process(
&self,
config: &EspforgeConfiguration,
) -> Result<NibblerResult, String>;
// Provided method
fn priority(&self) -> u8 { ... }
}