binaryninja::low_level_il::lifting

Trait LiftableLowLevelIL

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

source

fn lift( il: &'func LowLevelILMutableFunction, expr: Self, ) -> LowLevelILMutableExpression<'func, Self::Result>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> LiftableLowLevelIL<'a> for i8

source§

impl<'a> LiftableLowLevelIL<'a> for i16

source§

impl<'a> LiftableLowLevelIL<'a> for i32

source§

impl<'a> LiftableLowLevelIL<'a> for i64

source§

impl<'a> LiftableLowLevelIL<'a> for u8

source§

impl<'a> LiftableLowLevelIL<'a> for u16

source§

impl<'a> LiftableLowLevelIL<'a> for u32

source§

impl<'a> LiftableLowLevelIL<'a> for u64

Implementors§