pub trait LiftableLowLevelILWithSize<'func, A: 'func + Architecture>: LiftableLowLevelIL<'func, A, Result = ValueExpr> {
// Required method
fn lift_with_size(
il: &'func MutableLiftedILFunction<A>,
expr: Self,
size: usize,
) -> MutableLiftedILExpr<'func, A, ValueExpr>;
}
Required Methods§
fn lift_with_size( il: &'func MutableLiftedILFunction<A>, expr: Self, size: usize, ) -> MutableLiftedILExpr<'func, A, ValueExpr>
Object Safety§
This trait is not object safe.