pub struct DisassemblyOutput {
pub instructions: Vec<Instruction>,
pub warnings: Vec<DisassemblyWarning>,
}Expand description
Disassembly output including any non-fatal warnings.
Fields§
§instructions: Vec<Instruction>Decoded instructions.
warnings: Vec<DisassemblyWarning>Non-fatal warnings encountered during decoding.
Trait Implementations§
Source§impl Clone for DisassemblyOutput
impl Clone for DisassemblyOutput
Source§fn clone(&self) -> DisassemblyOutput
fn clone(&self) -> DisassemblyOutput
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 moreAuto Trait Implementations§
impl Freeze for DisassemblyOutput
impl RefUnwindSafe for DisassemblyOutput
impl Send for DisassemblyOutput
impl Sync for DisassemblyOutput
impl Unpin for DisassemblyOutput
impl UnwindSafe for DisassemblyOutput
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