pub struct ObjIns {
pub address: u64,
pub size: u8,
pub op: u16,
pub mnemonic: String,
pub args: Vec<ObjInsArg>,
pub reloc: Option<ObjReloc>,
pub branch_dest: Option<u64>,
pub line: Option<u32>,
pub formatted: String,
pub orig: Option<String>,
}
Fields§
§address: u64
§size: u8
§op: u16
§mnemonic: String
§args: Vec<ObjInsArg>
§reloc: Option<ObjReloc>
§branch_dest: Option<u64>
§line: Option<u32>
Line number
formatted: String
Formatted instruction
orig: Option<String>
Original (unsimplified) instruction
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ObjIns
impl RefUnwindSafe for ObjIns
impl Send for ObjIns
impl Sync for ObjIns
impl Unpin for ObjIns
impl UnwindSafe for ObjIns
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)