Enum capstone_sys::m680x_group_type
source · #[repr(u32)]pub enum m680x_group_type {
M680X_GRP_INVALID = 0,
M680X_GRP_JUMP = 1,
M680X_GRP_CALL = 2,
M680X_GRP_RET = 3,
M680X_GRP_INT = 4,
M680X_GRP_IRET = 5,
M680X_GRP_PRIV = 6,
M680X_GRP_BRAREL = 7,
M680X_GRP_ENDING = 8,
}
Expand description
Group of M680X instructions
Variants§
M680X_GRP_INVALID = 0
M680X_GRP_JUMP = 1
< = CS_GRP_JUMP
M680X_GRP_CALL = 2
< = CS_GRP_CALL
M680X_GRP_RET = 3
< = CS_GRP_RET
M680X_GRP_INT = 4
< = CS_GRP_INT
M680X_GRP_IRET = 5
< = CS_GRP_IRET
M680X_GRP_PRIV = 6
< = CS_GRP_PRIVILEDGE; not used
M680X_GRP_BRAREL = 7
< = CS_GRP_BRANCH_RELATIVE
M680X_GRP_ENDING = 8
Trait Implementations§
source§impl Clone for m680x_group_type
impl Clone for m680x_group_type
source§fn clone(&self) -> m680x_group_type
fn clone(&self) -> m680x_group_type
Returns a copy 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 m680x_group_type
impl Debug for m680x_group_type
source§impl Hash for m680x_group_type
impl Hash for m680x_group_type
source§impl PartialEq for m680x_group_type
impl PartialEq for m680x_group_type
source§fn eq(&self, other: &m680x_group_type) -> bool
fn eq(&self, other: &m680x_group_type) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for m680x_group_type
impl Eq for m680x_group_type
impl StructuralPartialEq for m680x_group_type
Auto Trait Implementations§
impl RefUnwindSafe for m680x_group_type
impl Send for m680x_group_type
impl Sync for m680x_group_type
impl Unpin for m680x_group_type
impl UnwindSafe for m680x_group_type
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