pub trait LiftableLowLevelILWithSize<'func>: LiftableLowLevelIL<'func, Result = ValueExpr> {
// Required method
fn lift_with_size(
il: &'func LowLevelILMutableFunction,
expr: Self,
size: usize,
) -> LowLevelILMutableExpression<'func, ValueExpr>;
}Required Methods§
fn lift_with_size( il: &'func LowLevelILMutableFunction, expr: Self, size: usize, ) -> LowLevelILMutableExpression<'func, ValueExpr>
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.