pub trait Inst {
type Args;
const LIT: &'static str;
fn instruction(ident: Ident, args: Self::Args) -> Instruction;
}
Expand description
A specific instruction.
Required Associated Types
Required Associated Constants
Required Methods
source