Trait LiftableLowLevelILWithSize

Source
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§

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.

Implementations on Foreign Types§

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for i8

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for i16

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for i32

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for i64

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for u8

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for u16

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for u32

Source§

impl<'a> LiftableLowLevelILWithSize<'a> for u64

Implementors§