revm_interpreter::interpreter_types

Trait Interp

Source
pub trait Interp {
    type Instruction;
    type Action;

    // Required method
    fn run(&mut self, instructions: &[Self::Instruction; 256]) -> Self::Action;
}

Required Associated Types§

Required Methods§

Source

fn run(&mut self, instructions: &[Self::Instruction; 256]) -> Self::Action

Implementors§