#[repr(u32)]pub enum arm64_shifter {
ARM64_SFT_INVALID = 0,
ARM64_SFT_LSL = 1,
ARM64_SFT_MSL = 2,
ARM64_SFT_LSR = 3,
ARM64_SFT_ASR = 4,
ARM64_SFT_ROR = 5,
}
Expand description
ARM64 shift type
Variants§
ARM64_SFT_INVALID = 0
ARM64_SFT_LSL = 1
ARM64_SFT_MSL = 2
ARM64_SFT_LSR = 3
ARM64_SFT_ASR = 4
ARM64_SFT_ROR = 5
Trait Implementations§
Source§impl Clone for arm64_shifter
impl Clone for arm64_shifter
Source§fn clone(&self) -> arm64_shifter
fn clone(&self) -> arm64_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 arm64_shifter
impl Debug for arm64_shifter
Source§impl Hash for arm64_shifter
impl Hash for arm64_shifter
Source§impl PartialEq for arm64_shifter
impl PartialEq for arm64_shifter
impl Copy for arm64_shifter
impl Eq for arm64_shifter
impl StructuralPartialEq for arm64_shifter
Auto Trait Implementations§
impl Freeze for arm64_shifter
impl RefUnwindSafe for arm64_shifter
impl Send for arm64_shifter
impl Sync for arm64_shifter
impl Unpin for arm64_shifter
impl UnwindSafe for arm64_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