OpcodeBase

Trait OpcodeBase 

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

Required Methods§

Source

fn opcode(&self) -> Opcode

Source

fn address(&self) -> u32

Source

fn mnemonic(&self) -> &'static str

Source

fn disassemble(&self) -> String

Implementors§