pub trait Generator { // Required methods fn name(&self) -> &'static str; fn generate(&self, api: &Api, out_dir: &Utf8Path) -> Result<()>; }