pub struct AssemblyInstruction {
pub address: Address,
pub mnemonic: String,
pub body: String,
}Expand description
A disassembled native assembly instruction
Fields§
§address: AddressThe origin of the assembly instruction
mnemonic: StringThe instruction mnemonic
body: StringThe body of the instruction
Trait Implementations§
Source§impl Clone for AssemblyInstruction
impl Clone for AssemblyInstruction
Source§fn clone(&self) -> AssemblyInstruction
fn clone(&self) -> AssemblyInstruction
Returns a duplicate 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 AssemblyInstruction
impl Debug for AssemblyInstruction
Auto Trait Implementations§
impl Freeze for AssemblyInstruction
impl RefUnwindSafe for AssemblyInstruction
impl Send for AssemblyInstruction
impl Sync for AssemblyInstruction
impl Unpin for AssemblyInstruction
impl UnwindSafe for AssemblyInstruction
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