pub enum DisassemblyWarning {
UnknownOpcode {
opcode: u8,
offset: usize,
},
}Expand description
Warning emitted during disassembly when configured to tolerate issues.
Variants§
UnknownOpcode
An unknown opcode was encountered; output may be desynchronized.
Trait Implementations§
Source§impl Clone for DisassemblyWarning
impl Clone for DisassemblyWarning
Source§fn clone(&self) -> DisassemblyWarning
fn clone(&self) -> DisassemblyWarning
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 DisassemblyWarning
impl Debug for DisassemblyWarning
Source§impl Display for DisassemblyWarning
impl Display for DisassemblyWarning
Source§impl PartialEq for DisassemblyWarning
impl PartialEq for DisassemblyWarning
impl Eq for DisassemblyWarning
impl StructuralPartialEq for DisassemblyWarning
Auto Trait Implementations§
impl Freeze for DisassemblyWarning
impl RefUnwindSafe for DisassemblyWarning
impl Send for DisassemblyWarning
impl Sync for DisassemblyWarning
impl Unpin for DisassemblyWarning
impl UnsafeUnpin for DisassemblyWarning
impl UnwindSafe for DisassemblyWarning
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.