Enum capstone_sys::arm64_shifter
source · #[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
source§fn eq(&self, other: &arm64_shifter) -> bool
fn eq(&self, other: &arm64_shifter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for arm64_shifter
impl Eq for arm64_shifter
impl StructuralPartialEq for arm64_shifter
Auto Trait Implementations§
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