#[repr(u32)]pub enum ShiftType {
Show 15 variants
ShiftType_NONE = 0,
ShiftType_LSL = 1,
ShiftType_LSR = 2,
ShiftType_ASR = 3,
ShiftType_ROR = 4,
ShiftType_UXTW = 5,
ShiftType_SXTW = 6,
ShiftType_SXTX = 7,
ShiftType_UXTX = 8,
ShiftType_SXTB = 9,
ShiftType_SXTH = 10,
ShiftType_UXTH = 11,
ShiftType_UXTB = 12,
ShiftType_MSL = 13,
ShiftType_END = 14,
}Variants§
ShiftType_NONE = 0
ShiftType_LSL = 1
ShiftType_LSR = 2
ShiftType_ASR = 3
ShiftType_ROR = 4
ShiftType_UXTW = 5
ShiftType_SXTW = 6
ShiftType_SXTX = 7
ShiftType_UXTX = 8
ShiftType_SXTB = 9
ShiftType_SXTH = 10
ShiftType_UXTH = 11
ShiftType_UXTB = 12
ShiftType_MSL = 13
ShiftType_END = 14
Trait Implementations§
impl Copy for ShiftType
impl Eq for ShiftType
impl StructuralPartialEq for ShiftType
Auto Trait Implementations§
impl Freeze for ShiftType
impl RefUnwindSafe for ShiftType
impl Send for ShiftType
impl Sync for ShiftType
impl Unpin for ShiftType
impl UnwindSafe for ShiftType
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