pub trait StepInterpreter<H>: Interpreter<H> {
// Required method
fn step(
&mut self,
handle: &mut H,
) -> Result<(), Capture<ExitResult, Self::Trap>>;
}
Expand description
An interpreter that allows single stepping.
pub trait StepInterpreter<H>: Interpreter<H> {
// Required method
fn step(
&mut self,
handle: &mut H,
) -> Result<(), Capture<ExitResult, Self::Trap>>;
}
An interpreter that allows single stepping.