pub enum DisassemblyEngine {
Capstone,
Iced,
Auto,
}Expand description
Disassembly engine selection
Variants§
Capstone
Use Capstone disassembly engine
Iced
Use iced-x86 disassembly engine
Auto
Automatic engine selection
Trait Implementations§
Source§impl Clone for DisassemblyEngine
impl Clone for DisassemblyEngine
Source§fn clone(&self) -> DisassemblyEngine
fn clone(&self) -> DisassemblyEngine
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 DisassemblyEngine
impl Debug for DisassemblyEngine
Source§impl PartialEq for DisassemblyEngine
impl PartialEq for DisassemblyEngine
impl Copy for DisassemblyEngine
impl Eq for DisassemblyEngine
impl StructuralPartialEq for DisassemblyEngine
Auto Trait Implementations§
impl Freeze for DisassemblyEngine
impl RefUnwindSafe for DisassemblyEngine
impl Send for DisassemblyEngine
impl Sync for DisassemblyEngine
impl Unpin for DisassemblyEngine
impl UnwindSafe for DisassemblyEngine
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.