#[repr(C)]
pub struct SystemRegister {
Show 26 fields pub sp: u64, pub sp_el0: u64, pub esr_el1: u64, pub vbar: u64, pub ttbr0: u64, pub ttbr1: u64, pub mair: u64, pub amair: u64, pub tcr: u64, pub tpidr: u64, pub tpidr_el0: u64, pub tpidrro: u64, pub actlr: u64, pub vmpidr: u64, pub csselr: u64, pub cpacr: u64, pub afsr0: u64, pub afsr1: u64, pub far: u64, pub contextidr: u64, pub cntkctl: u64, pub par: u64, pub vttbr: u64, pub esr_el2: u64, pub hpfar: u64, pub sctlr: u64,
}

Fields§

§sp: u64§sp_el0: u64§esr_el1: u64§vbar: u64§ttbr0: u64§ttbr1: u64§mair: u64§amair: u64§tcr: u64§tpidr: u64§tpidr_el0: u64§tpidrro: u64§actlr: u64§vmpidr: u64§csselr: u64§cpacr: u64§afsr0: u64§afsr1: u64§far: u64§contextidr: u64§cntkctl: u64§par: u64§vttbr: u64§esr_el2: u64§hpfar: u64§sctlr: u64

Trait Implementations§

source§

impl Debug for SystemRegister

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SystemRegister

source§

fn default() -> SystemRegister

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.