pub enum Aarch64Register {
Pc(u64),
X0(u64),
X1(u64),
Cpsr(u64),
VbarEl1(u64),
Ttbr0El1(u64),
Ttbr1El1(u64),
MairEl1(u64),
SctlrEl1(u64),
TcrEl1(u64),
}Variants§
Pc(u64)
X0(u64)
X1(u64)
Cpsr(u64)
VbarEl1(u64)
Ttbr0El1(u64)
Ttbr1El1(u64)
MairEl1(u64)
SctlrEl1(u64)
TcrEl1(u64)
Trait Implementations§
Source§impl Clone for Aarch64Register
impl Clone for Aarch64Register
Source§fn clone(&self) -> Aarch64Register
fn clone(&self) -> Aarch64Register
Returns a duplicate 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 Aarch64Register
impl Debug for Aarch64Register
Source§impl From<AArch64Register> for Aarch64Register
impl From<AArch64Register> for Aarch64Register
Source§impl From<Aarch64Register> for AArch64Register
impl From<Aarch64Register> for AArch64Register
Source§fn from(value: Aarch64Register) -> Self
fn from(value: Aarch64Register) -> Self
Converts to this type from the input type.
Source§impl GuestArch for Aarch64Register
impl GuestArch for Aarch64Register
fn arch() -> GuestArchKind
Source§impl PartialEq for Aarch64Register
impl PartialEq for Aarch64Register
impl Copy for Aarch64Register
impl Eq for Aarch64Register
impl StructuralPartialEq for Aarch64Register
Auto Trait Implementations§
impl Freeze for Aarch64Register
impl RefUnwindSafe for Aarch64Register
impl Send for Aarch64Register
impl Sync for Aarch64Register
impl Unpin for Aarch64Register
impl UnwindSafe for Aarch64Register
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