Enum capstone_sys::arm_cc
source · [−]#[repr(u32)]
pub enum arm_cc {
Show 16 variants
ARM_CC_INVALID,
ARM_CC_EQ,
ARM_CC_NE,
ARM_CC_HS,
ARM_CC_LO,
ARM_CC_MI,
ARM_CC_PL,
ARM_CC_VS,
ARM_CC_VC,
ARM_CC_HI,
ARM_CC_LS,
ARM_CC_GE,
ARM_CC_LT,
ARM_CC_GT,
ARM_CC_LE,
ARM_CC_AL,
}Expand description
ARM condition code
Variants
ARM_CC_INVALID
ARM_CC_EQ
< Equal Equal
ARM_CC_NE
< Not equal Not equal, or unordered
ARM_CC_HS
< Carry set >, ==, or unordered
ARM_CC_LO
< Carry clear Less than
ARM_CC_MI
< Minus, negative Less than
ARM_CC_PL
< Plus, positive or zero >, ==, or unordered
ARM_CC_VS
< Overflow Unordered
ARM_CC_VC
< No overflow Not unordered
ARM_CC_HI
< Unsigned higher Greater than, or unordered
ARM_CC_LS
< Unsigned lower or same Less than or equal
ARM_CC_GE
< Greater than or equal Greater than or equal
ARM_CC_LT
< Less than Less than, or unordered
ARM_CC_GT
< Greater than Greater than
ARM_CC_LE
< Less than or equal <, ==, or unordered
ARM_CC_AL
< Always (unconditional) Always (unconditional)
Trait Implementations
impl Copy for arm_cc
impl Eq for arm_cc
impl StructuralEq for arm_cc
impl StructuralPartialEq for arm_cc
Auto Trait Implementations
impl RefUnwindSafe for arm_cc
impl Send for arm_cc
impl Sync for arm_cc
impl Unpin for arm_cc
impl UnwindSafe for arm_cc
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