pub enum HighLevelILLiftedOperand {
ConstantData(ConstantData),
Expr(HighLevelILLiftedInstruction),
ExprList(Vec<HighLevelILLiftedInstruction>),
Float(f64),
Int(u64),
IntList(Vec<u64>),
Intrinsic(CoreIntrinsic),
Label(GotoLabel),
MemberIndex(Option<usize>),
Var(Variable),
VarSsa(SSAVariable),
VarSsaList(Vec<SSAVariable>),
}
Variants§
ConstantData(ConstantData)
Expr(HighLevelILLiftedInstruction)
ExprList(Vec<HighLevelILLiftedInstruction>)
Float(f64)
Int(u64)
IntList(Vec<u64>)
Intrinsic(CoreIntrinsic)
Label(GotoLabel)
MemberIndex(Option<usize>)
Var(Variable)
VarSsa(SSAVariable)
VarSsaList(Vec<SSAVariable>)
Trait Implementations§
source§impl Clone for HighLevelILLiftedOperand
impl Clone for HighLevelILLiftedOperand
source§fn clone(&self) -> HighLevelILLiftedOperand
fn clone(&self) -> HighLevelILLiftedOperand
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 moreAuto Trait Implementations§
impl RefUnwindSafe for HighLevelILLiftedOperand
impl !Send for HighLevelILLiftedOperand
impl !Sync for HighLevelILLiftedOperand
impl Unpin for HighLevelILLiftedOperand
impl UnwindSafe for HighLevelILLiftedOperand
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