#[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
impl Copy for arm_shifter
impl Eq for arm_shifter
impl StructuralPartialEq for arm_shifter
Auto Trait Implementations§
impl Freeze for arm_shifter
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