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

Arguments to the instruction.

Required Associated Constants

The instruction’s literal in source code.

Required Methods

Implementors