//! Generators to export to a .PRG or source code.
usecrate::{validator::AssemblerResult, Application};moddasm;modprogram;/// Generate an output for a given application.
pubtraitGenerator{typeOutput;/// Generate an output for the given application.
fngenerate(self, application: Application)->AssemblerResult<Self::Output>;}pubusedasm::*;pubuseprogram::*;