pub trait Generator {
// Required methods
fn name(&self) -> &str;
fn plan(&self, ctx: &GenContext, args: &[String]) -> Result<Plan>;
}Expand description
A third-party (or built-in) code generator. Implement this to extend gize (ADR-008, v0).
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".