pub struct MediumLevelILLiftedInstruction {
pub function: Ref<MediumLevelILFunction>,
pub address: u64,
pub index: MediumLevelInstructionIndex,
pub size: usize,
pub kind: MediumLevelILLiftedInstructionKind,
}
Fields§
§function: Ref<MediumLevelILFunction>
§address: u64
§index: MediumLevelInstructionIndex
§size: usize
§kind: MediumLevelILLiftedInstructionKind
Implementations§
Trait Implementations§
source§impl Clone for MediumLevelILLiftedInstruction
impl Clone for MediumLevelILLiftedInstruction
source§fn clone(&self) -> MediumLevelILLiftedInstruction
fn clone(&self) -> MediumLevelILLiftedInstruction
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 PartialEq for MediumLevelILLiftedInstruction
impl PartialEq for MediumLevelILLiftedInstruction
source§fn eq(&self, other: &MediumLevelILLiftedInstruction) -> bool
fn eq(&self, other: &MediumLevelILLiftedInstruction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MediumLevelILLiftedInstruction
Auto Trait Implementations§
impl Freeze for MediumLevelILLiftedInstruction
impl RefUnwindSafe for MediumLevelILLiftedInstruction
impl Send for MediumLevelILLiftedInstruction
impl Sync for MediumLevelILLiftedInstruction
impl Unpin for MediumLevelILLiftedInstruction
impl UnwindSafe for MediumLevelILLiftedInstruction
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