pub trait VmExecutionExtension<F> {
type Executor: AnyEnum;
// Required method
fn extend_execution(
&self,
inventory: &mut ExecutorInventoryBuilder<'_, F, Self::Executor>,
) -> Result<(), ExecutorInventoryError>;
}
Expand description
Extension of VM execution. Allows registration of custom execution of new instructions by opcode.