pub struct DecodedInstr {
pub offset: ByteOffset,
pub instr: Instr,
}Expand description
A decoded instruction paired with its absolute byte offset in the module.
Fields§
§offset: ByteOffset§instr: InstrTrait Implementations§
Source§impl Clone for DecodedInstr
impl Clone for DecodedInstr
Source§fn clone(&self) -> DecodedInstr
fn clone(&self) -> DecodedInstr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecodedInstr
impl Debug for DecodedInstr
Source§impl PartialEq for DecodedInstr
impl PartialEq for DecodedInstr
impl StructuralPartialEq for DecodedInstr
Auto Trait Implementations§
impl Freeze for DecodedInstr
impl RefUnwindSafe for DecodedInstr
impl Send for DecodedInstr
impl Sync for DecodedInstr
impl Unpin for DecodedInstr
impl UnsafeUnpin for DecodedInstr
impl UnwindSafe for DecodedInstr
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