Trait ContextInspectRun

Source
pub trait ContextInspectRun {
    type InterpreterTypes: InterpreterTypes;
    type Context: ContextTr + Host;

    // Required method
    fn run_context(
        &mut self,
        interpretere: Interpreter<Self::InterpreterTypes>,
        instructions: &InstructionTable<Self::InterpreterTypes, Self::Context>,
    );
}

Required Associated Types§

Source

type InterpreterTypes: InterpreterTypes

Source

type Context: ContextTr + Host

Required Methods§

Source

fn run_context( &mut self, interpretere: Interpreter<Self::InterpreterTypes>, instructions: &InstructionTable<Self::InterpreterTypes, Self::Context>, )

Implementors§