pub trait InspectorEvmTr: EvmTr {
type Inspector;
// Required methods
fn inspector(&mut self) -> &mut Self::Inspector;
fn ctx_inspector(&mut self) -> (&mut Self::Context, &mut Self::Inspector);
fn run_inspect_interpreter(
&mut self,
interpreter: &mut Interpreter<<Self::Instructions as InstructionProvider>::InterpreterTypes>,
) -> <Self::Instructions as InstructionProvider>::Output;
}
Expand description
Inspector EVM trait.