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