pub enum LowLevelILRegisterOrConstant<R: ArchReg> {
Register(usize, LowLevelILRegisterKind<R>),
Constant(usize, u64),
}Variants§
Trait Implementations§
source§impl<R: Clone + ArchReg> Clone for LowLevelILRegisterOrConstant<R>
impl<R: Clone + ArchReg> Clone for LowLevelILRegisterOrConstant<R>
source§fn clone(&self) -> LowLevelILRegisterOrConstant<R>
fn clone(&self) -> LowLevelILRegisterOrConstant<R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<R: ArchReg> From<LowLevelILRegisterOrConstant<R>> for BNRegisterOrConstant
impl<R: ArchReg> From<LowLevelILRegisterOrConstant<R>> for BNRegisterOrConstant
source§fn from(value: LowLevelILRegisterOrConstant<R>) -> Self
fn from(value: LowLevelILRegisterOrConstant<R>) -> Self
Converts to this type from the input type.
source§impl<'a, R> LiftableLowLevelIL<'a> for LowLevelILRegisterOrConstant<R>where
R: LiftableLowLevelILWithSize<'a, Result = ValueExpr> + Into<LowLevelILRegisterKind<R>> + ArchReg,
impl<'a, R> LiftableLowLevelIL<'a> for LowLevelILRegisterOrConstant<R>where
R: LiftableLowLevelILWithSize<'a, Result = ValueExpr> + Into<LowLevelILRegisterKind<R>> + ArchReg,
type Result = ValueExpr
fn lift( il: &'a LowLevelILMutableFunction, reg: Self, ) -> LowLevelILMutableExpression<'a, Self::Result>
source§impl<'a, R> LiftableLowLevelILWithSize<'a> for LowLevelILRegisterOrConstant<R>
impl<'a, R> LiftableLowLevelILWithSize<'a> for LowLevelILRegisterOrConstant<R>
fn lift_with_size( il: &'a LowLevelILMutableFunction, reg: Self, size: usize, ) -> LowLevelILMutableExpression<'a, ValueExpr>
impl<R: Copy + ArchReg> Copy for LowLevelILRegisterOrConstant<R>
Auto Trait Implementations§
impl<R> Freeze for LowLevelILRegisterOrConstant<R>where
R: Freeze,
impl<R> RefUnwindSafe for LowLevelILRegisterOrConstant<R>where
R: RefUnwindSafe,
impl<R> Send for LowLevelILRegisterOrConstant<R>where
R: Send,
impl<R> Sync for LowLevelILRegisterOrConstant<R>where
R: Sync,
impl<R> Unpin for LowLevelILRegisterOrConstant<R>where
R: Unpin,
impl<R> UnwindSafe for LowLevelILRegisterOrConstant<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