pub trait OpBuilder: Sized {
type Context;
// Required methods
fn build_op(
self,
) -> OpEvm<Self::Context, (), EthInstructions<EthInterpreter, Self::Context>>;
fn build_op_with_inspector<INSP>(
self,
inspector: INSP,
) -> OpEvm<Self::Context, INSP, EthInstructions<EthInterpreter, Self::Context>>;
}
Required Associated Types§
Required Methods§
fn build_op( self, ) -> OpEvm<Self::Context, (), EthInstructions<EthInterpreter, Self::Context>>
fn build_op_with_inspector<INSP>( self, inspector: INSP, ) -> OpEvm<Self::Context, INSP, EthInstructions<EthInterpreter, Self::Context>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.