Struct binaryninja::hlil::operation::LiftedForLoop
source · pub struct LiftedForLoop {
pub init: Box<HighLevelILLiftedInstruction>,
pub condition: Box<HighLevelILLiftedInstruction>,
pub update: Box<HighLevelILLiftedInstruction>,
pub body: Box<HighLevelILLiftedInstruction>,
}
Fields§
§init: Box<HighLevelILLiftedInstruction>
§condition: Box<HighLevelILLiftedInstruction>
§update: Box<HighLevelILLiftedInstruction>
§body: Box<HighLevelILLiftedInstruction>
Trait Implementations§
source§impl Clone for LiftedForLoop
impl Clone for LiftedForLoop
source§fn clone(&self) -> LiftedForLoop
fn clone(&self) -> LiftedForLoop
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 Debug for LiftedForLoop
impl Debug for LiftedForLoop
source§impl PartialEq for LiftedForLoop
impl PartialEq for LiftedForLoop
source§fn eq(&self, other: &LiftedForLoop) -> bool
fn eq(&self, other: &LiftedForLoop) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LiftedForLoop
Auto Trait Implementations§
impl RefUnwindSafe for LiftedForLoop
impl !Send for LiftedForLoop
impl !Sync for LiftedForLoop
impl Unpin for LiftedForLoop
impl UnwindSafe for LiftedForLoop
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