pub trait CodeGenerator: Sized {
    type Generator: From<Self> + GenerateCode;
}
Expand description

Types for which code can be generated by this crate.

Required Associated Types

The underlying generator generating the code.

Implementations on Foreign Types

Implementors