pub trait InspectorFrame: FrameTr<FrameResult = FrameResult, FrameInit = FrameInit> {
type IT: InterpreterTypes;
// Required method
fn eth_frame(&mut self) -> Option<&mut EthFrame<EthInterpreter>>;
}Expand description
Trait that extends the [FrameTr] trait with additional functionality that is needed for inspection.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl InspectorFrame for EthFrame<EthInterpreter>
Impl InspectorFrame for EthFrame.
impl InspectorFrame for EthFrame<EthInterpreter>
Impl InspectorFrame for EthFrame.