Enum capstone_sys::arm_shifter
source · #[repr(u32)]pub enum arm_shifter {
ARM_SFT_INVALID = 0,
ARM_SFT_ASR = 1,
ARM_SFT_LSL = 2,
ARM_SFT_LSR = 3,
ARM_SFT_ROR = 4,
ARM_SFT_RRX = 5,
ARM_SFT_ASR_REG = 6,
ARM_SFT_LSL_REG = 7,
ARM_SFT_LSR_REG = 8,
ARM_SFT_ROR_REG = 9,
ARM_SFT_RRX_REG = 10,
}
Expand description
ARM shift type
Variants§
ARM_SFT_INVALID = 0
ARM_SFT_ASR = 1
< shift with immediate const
ARM_SFT_LSL = 2
< shift with immediate const
ARM_SFT_LSR = 3
< shift with immediate const
ARM_SFT_ROR = 4
< shift with immediate const
ARM_SFT_RRX = 5
< shift with immediate const
ARM_SFT_ASR_REG = 6
< shift with register
ARM_SFT_LSL_REG = 7
< shift with register
ARM_SFT_LSR_REG = 8
< shift with register
ARM_SFT_ROR_REG = 9
< shift with register
ARM_SFT_RRX_REG = 10
< shift with register
Trait Implementations§
source§impl Clone for arm_shifter
impl Clone for arm_shifter
source§fn clone(&self) -> arm_shifter
fn clone(&self) -> arm_shifter
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 arm_shifter
impl Debug for arm_shifter
source§impl Hash for arm_shifter
impl Hash for arm_shifter
source§impl PartialEq for arm_shifter
impl PartialEq for arm_shifter
source§fn eq(&self, other: &arm_shifter) -> bool
fn eq(&self, other: &arm_shifter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for arm_shifter
impl Eq for arm_shifter
impl StructuralPartialEq for arm_shifter
Auto Trait Implementations§
impl RefUnwindSafe for arm_shifter
impl Send for arm_shifter
impl Sync for arm_shifter
impl Unpin for arm_shifter
impl UnwindSafe for arm_shifter
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