Enum capstone_sys::cs_opt_type
source · [−]#[repr(u32)]
pub enum cs_opt_type {
CS_OPT_INVALID,
CS_OPT_SYNTAX,
CS_OPT_DETAIL,
CS_OPT_MODE,
CS_OPT_MEM,
CS_OPT_SKIPDATA,
CS_OPT_SKIPDATA_SETUP,
CS_OPT_MNEMONIC,
CS_OPT_UNSIGNED,
}Expand description
Runtime option for the disassembled engine
Variants
CS_OPT_INVALID
< No option specified
CS_OPT_SYNTAX
< Assembly output syntax
CS_OPT_DETAIL
< Break down instruction structure into details
CS_OPT_MODE
< Change engine’s mode at run-time
CS_OPT_MEM
< User-defined dynamic memory related functions
CS_OPT_SKIPDATA
< Skip data when disassembling. Then engine is in SKIPDATA mode.
CS_OPT_SKIPDATA_SETUP
< Setup user-defined function for SKIPDATA option
CS_OPT_MNEMONIC
< Customize instruction mnemonic
CS_OPT_UNSIGNED
< print immediate operands in unsigned form
Trait Implementations
sourceimpl Clone for cs_opt_type
impl Clone for cs_opt_type
sourcefn clone(&self) -> cs_opt_type
fn clone(&self) -> cs_opt_type
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for cs_opt_type
impl Debug for cs_opt_type
sourceimpl Hash for cs_opt_type
impl Hash for cs_opt_type
sourceimpl PartialEq<cs_opt_type> for cs_opt_type
impl PartialEq<cs_opt_type> for cs_opt_type
impl Copy for cs_opt_type
impl Eq for cs_opt_type
impl StructuralEq for cs_opt_type
impl StructuralPartialEq for cs_opt_type
Auto Trait Implementations
impl RefUnwindSafe for cs_opt_type
impl Send for cs_opt_type
impl Sync for cs_opt_type
impl Unpin for cs_opt_type
impl UnwindSafe for cs_opt_type
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more