pub enum DisassembledInstructionPresentationHint {
Normal,
Invalid,
}
Expand description
A hint for how to present the instruction in the UI.
A value of invalid
may be used to indicate this instruction is ‘filler’ and cannot be reached by the program. For example, unreadable memory addresses may be presented is ‘invalid.’
Variants§
Trait Implementations§
Source§impl Clone for DisassembledInstructionPresentationHint
impl Clone for DisassembledInstructionPresentationHint
Source§fn clone(&self) -> DisassembledInstructionPresentationHint
fn clone(&self) -> DisassembledInstructionPresentationHint
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<'de> Deserialize<'de> for DisassembledInstructionPresentationHint
impl<'de> Deserialize<'de> for DisassembledInstructionPresentationHint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DisassembledInstructionPresentationHint
impl PartialEq for DisassembledInstructionPresentationHint
Source§fn eq(&self, other: &DisassembledInstructionPresentationHint) -> bool
fn eq(&self, other: &DisassembledInstructionPresentationHint) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for DisassembledInstructionPresentationHint
impl Eq for DisassembledInstructionPresentationHint
impl StructuralPartialEq for DisassembledInstructionPresentationHint
Auto Trait Implementations§
impl Freeze for DisassembledInstructionPresentationHint
impl RefUnwindSafe for DisassembledInstructionPresentationHint
impl Send for DisassembledInstructionPresentationHint
impl Sync for DisassembledInstructionPresentationHint
impl Unpin for DisassembledInstructionPresentationHint
impl UnwindSafe for DisassembledInstructionPresentationHint
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