pub struct ExpressionBuilder<'func, R>where
R: ExpressionResultType,{ /* private fields */ }
Implementations§
source§impl<'a, R> ExpressionBuilder<'a, R>where
R: ExpressionResultType,
impl<'a, R> ExpressionBuilder<'a, R>where
R: ExpressionResultType,
pub fn from_expr(expr: LowLevelILExpression<'a, Mutable, NonSSA, R>) -> Self
pub fn with_flag_write(self, flag_write: impl FlagWrite) -> Self
pub fn build(self) -> LowLevelILExpression<'a, Mutable, NonSSA, R>
pub fn with_source_operand( self, op: u32, ) -> LowLevelILExpression<'a, Mutable, NonSSA, R>
pub fn append(self)
Trait Implementations§
source§impl<'a, R> LiftableLowLevelIL<'a> for ExpressionBuilder<'a, R>where
R: ExpressionResultType,
impl<'a, R> LiftableLowLevelIL<'a> for ExpressionBuilder<'a, R>where
R: ExpressionResultType,
type Result = R
fn lift( il: &'a LowLevelILMutableFunction, expr: Self, ) -> LowLevelILMutableExpression<'a, Self::Result>
source§impl<'a> LiftableLowLevelILWithSize<'a> for ExpressionBuilder<'a, ValueExpr>
impl<'a> LiftableLowLevelILWithSize<'a> for ExpressionBuilder<'a, ValueExpr>
fn lift_with_size( il: &'a LowLevelILMutableFunction, expr: Self, _size: usize, ) -> LowLevelILMutableExpression<'a, ValueExpr>
Auto Trait Implementations§
impl<'func, R> Freeze for ExpressionBuilder<'func, R>
impl<'func, R> RefUnwindSafe for ExpressionBuilder<'func, R>where
R: RefUnwindSafe,
impl<'func, R> Send for ExpressionBuilder<'func, R>where
R: Send,
impl<'func, R> Sync for ExpressionBuilder<'func, R>where
R: Sync,
impl<'func, R> Unpin for ExpressionBuilder<'func, R>where
R: Unpin,
impl<'func, R> UnwindSafe for ExpressionBuilder<'func, R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more