Struct capstone_sys::cs_opt_mnem
source · #[repr(C)]pub struct cs_opt_mnem {
pub id: c_uint,
pub mnemonic: *const c_char,
}
Expand description
Customize mnemonic for instructions with alternative name. To reset existing customized instruction to its default mnemonic, call cs_option(CS_OPT_MNEMONIC) again with the same @id and NULL value for @mnemonic.
Fields§
§id: c_uint
ID of instruction to be customized.
mnemonic: *const c_char
Customized instruction mnemonic.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for cs_opt_mnem
impl !Send for cs_opt_mnem
impl !Sync for cs_opt_mnem
impl Unpin for cs_opt_mnem
impl UnwindSafe for cs_opt_mnem
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