pub trait CodeGenerator: Sized {
type Generator: From<Self> + GenerateCode;
}
Expand description
Types for which code can be generated by this crate.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.