pub trait InstructionHandler<'func, A, M, F>{
// Required methods
fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, F>;
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
where T: FnMut(&LowLevelILExpression<'func, A, M, F, ValueExpr>) -> VisitorAction;
}
Required Methods§
fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, F>
sourcefn visit_tree<T>(&self, f: &mut T) -> VisitorAction
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
Visit the sub expressions of this instruction.
NOTE: This does not visit the root expression, i.e. the instruction.
Object Safety§
This trait is not object safe.