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