//! Combined trait for generators that can both generate code and write files
usesuper::code_generator::CodeGenerator;usesuper::file_writer::FileWriter;/// Combined trait for generators that can both generate code and write files
pubtraitCombinedGenerator: CodeGenerator + FileWriter {}impl<T: CodeGenerator + FileWriter> CombinedGenerator forT{}