pub trait ParametersCodegen {
// Required method
fn supplement_parameters(
&mut self,
module: &mut ItemMod,
is_tusks_root: bool,
derive_debug: bool,
) -> Result<()>;
}Expand description
Code generation phase: supplements Parameters structs with
super_ fields, lifetime markers, and missing struct definitions.