1 2 3 4 5 6 7 8 9 10 11
use std::fmt::Debug; pub mod archetype_start; pub mod invar_start; pub mod relation_helper; pub mod relation_join; pub mod types; pub trait GeneratorNode: Debug { fn generate(&self, step: usize, prepend: &mut String, append: &mut String) -> usize; }