pub enum RegAArch64 {
Show 35 variants
X0,
X1,
X2,
X3,
X4,
X5,
X6,
X7,
X8,
X9,
X10,
X11,
X12,
X13,
X14,
X15,
X16,
X17,
X18,
X19,
X20,
X21,
X22,
X23,
X24,
X25,
X26,
X27,
X28,
X29,
X30,
X31,
PC,
PSTATE,
UNKNOWN(u32),
}Expand description
Register for the AArch64 architecture
Variants§
X0
X1
X2
X3
X4
X5
X6
X7
X8
X9
X10
X11
X12
X13
X14
X15
X16
X17
X18
X19
X20
X21
X22
X23
X24
X25
X26
X27
X28
X29
X30
X31
PC
PSTATE
UNKNOWN(u32)
Trait Implementations§
§impl Clone for RegAArch64
impl Clone for RegAArch64
§fn clone(&self) -> RegAArch64
fn clone(&self) -> RegAArch64
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 more§impl Debug for RegAArch64
impl Debug for RegAArch64
§impl From<u32> for RegAArch64
impl From<u32> for RegAArch64
§impl Hash for RegAArch64
impl Hash for RegAArch64
§impl PartialEq<RegAArch64> for RegAArch64
impl PartialEq<RegAArch64> for RegAArch64
§fn eq(&self, other: &RegAArch64) -> bool
fn eq(&self, other: &RegAArch64) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for RegAArch64
impl Eq for RegAArch64
impl StructuralEq for RegAArch64
impl StructuralPartialEq for RegAArch64
Auto Trait Implementations§
impl RefUnwindSafe for RegAArch64
impl Send for RegAArch64
impl Sync for RegAArch64
impl Unpin for RegAArch64
impl UnwindSafe for RegAArch64
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