Trait Interp

pub trait Interp {
    type Instruction;
    type Action;

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

Required Associated Types§

Required Methods§

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

Implementors§