pub trait OpcodeBase {
// Required methods
fn opcode(&self) -> Opcode;
fn address(&self) -> u32;
fn mnemonic(&self) -> &'static str;
fn disassemble(&self) -> String;
}pub trait OpcodeBase {
// Required methods
fn opcode(&self) -> Opcode;
fn address(&self) -> u32;
fn mnemonic(&self) -> &'static str;
fn disassemble(&self) -> String;
}