pub trait LiftableLowLevelIL<'func> {
type Result: ExpressionResultType;
// Required method
fn lift(
il: &'func LowLevelILMutableFunction,
expr: Self,
) -> LowLevelILMutableExpression<'func, Self::Result>;
}Required Associated Types§
Required Methods§
fn lift( il: &'func LowLevelILMutableFunction, expr: Self, ) -> LowLevelILMutableExpression<'func, Self::Result>
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.