Enum capstone_sys::arm64_pstate
source · #[repr(u32)]pub enum arm64_pstate {
ARM64_PSTATE_INVALID = 0,
ARM64_PSTATE_SPSEL = 5,
ARM64_PSTATE_DAIFSET = 30,
ARM64_PSTATE_DAIFCLR = 31,
ARM64_PSTATE_PAN = 4,
ARM64_PSTATE_UAO = 3,
ARM64_PSTATE_DIT = 26,
}
Expand description
System PState Field (MSR instruction)
Variants§
ARM64_PSTATE_INVALID = 0
ARM64_PSTATE_SPSEL = 5
ARM64_PSTATE_DAIFSET = 30
ARM64_PSTATE_DAIFCLR = 31
ARM64_PSTATE_PAN = 4
ARM64_PSTATE_UAO = 3
ARM64_PSTATE_DIT = 26
Trait Implementations§
source§impl Clone for arm64_pstate
impl Clone for arm64_pstate
source§fn clone(&self) -> arm64_pstate
fn clone(&self) -> arm64_pstate
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_pstate
impl Debug for arm64_pstate
source§impl Hash for arm64_pstate
impl Hash for arm64_pstate
source§impl PartialEq for arm64_pstate
impl PartialEq for arm64_pstate
source§fn eq(&self, other: &arm64_pstate) -> bool
fn eq(&self, other: &arm64_pstate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for arm64_pstate
impl Eq for arm64_pstate
impl StructuralPartialEq for arm64_pstate
Auto Trait Implementations§
impl RefUnwindSafe for arm64_pstate
impl Send for arm64_pstate
impl Sync for arm64_pstate
impl Unpin for arm64_pstate
impl UnwindSafe for arm64_pstate
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