binaryninja::low_level_il::expression

Struct LowLevelILExpression

source
pub struct LowLevelILExpression<'func, A, M, F, R>{
    pub index: LowLevelExpressionIndex,
    /* private fields */
}

Fields§

§index: LowLevelExpressionIndex

Implementations§

source§

impl<'func, A, R> LowLevelILExpression<'func, A, Mutable, NonSSA<LiftedNonSSA>, R>
where A: 'func + Architecture, R: ExpressionResultType,

source

pub fn with_source_operand(self, op: u32) -> Self

source

pub fn append(self)

Trait Implementations§

source§

impl<'func, A, M, F, R> Debug for LowLevelILExpression<'func, A, M, F, R>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'func, A, M> ExpressionHandler<'func, A, M, NonSSA<LiftedNonSSA>> for LowLevelILExpression<'func, A, M, NonSSA<LiftedNonSSA>, ValueExpr>
where A: 'func + Architecture, M: FunctionMutability,

source§

impl<'func, A, M> ExpressionHandler<'func, A, M, NonSSA<RegularNonSSA>> for LowLevelILExpression<'func, A, M, NonSSA<RegularNonSSA>, ValueExpr>
where A: 'func + Architecture, M: FunctionMutability,

source§

impl<'func, A, M> ExpressionHandler<'func, A, M, SSA> for LowLevelILExpression<'func, A, M, SSA, ValueExpr>
where A: 'func + Architecture, M: FunctionMutability,

source§

fn kind(&self) -> LowLevelILExpressionKind<'func, A, M, SSA>

source§

fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
where T: FnMut(&LowLevelILExpression<'func, A, M, SSA, ValueExpr>) -> VisitorAction,

source§

impl<'a, A, R> LiftableLowLevelIL<'a, A> for LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, R>

source§

type Result = R

source§

fn lift( il: &'a MutableLiftedILFunction<A>, expr: Self, ) -> MutableLiftedILExpr<'a, A, Self::Result>

source§

impl<'a, A: 'a + Architecture> LiftableLowLevelILWithSize<'a, A> for LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, ValueExpr>

source§

fn lift_with_size( il: &'a MutableLiftedILFunction<A>, expr: Self, _size: usize, ) -> MutableLiftedILExpr<'a, A, Self::Result>

Auto Trait Implementations§

§

impl<'func, A, M, F, R> Freeze for LowLevelILExpression<'func, A, M, F, R>

§

impl<'func, A, M, F, R> RefUnwindSafe for LowLevelILExpression<'func, A, M, F, R>

§

impl<'func, A, M, F, R> Send for LowLevelILExpression<'func, A, M, F, R>
where R: Send,

§

impl<'func, A, M, F, R> Sync for LowLevelILExpression<'func, A, M, F, R>
where R: Sync,

§

impl<'func, A, M, F, R> Unpin for LowLevelILExpression<'func, A, M, F, R>
where R: Unpin,

§

impl<'func, A, M, F, R> UnwindSafe for LowLevelILExpression<'func, A, M, F, R>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.