pub trait Generator {
type Output;
// Required method
fn generate(self, application: Application) -> AssemblerResult<Self::Output>;
}
Expand description
Generate an output for a given application.
Required Associated Types§
Required Methods§
Sourcefn generate(self, application: Application) -> AssemblerResult<Self::Output>
fn generate(self, application: Application) -> AssemblerResult<Self::Output>
Generate an output for the given application.