pub trait CodeGenBackend: Debug {
// Required methods
fn generate(&self, graph: &FxGraph) -> Result<String>;
fn file_extension(&self) -> &'static str;
fn language_name(&self) -> &'static str;
}Expand description
Core backend trait for code generation