pub struct Mpidr {
    pub aff0: u8,
    pub aff1: u8,
    pub aff2: u8,
    pub aff3: Option<u8>,
}Expand description
The type contains the affinity fields of the MPIDR register. For AArch32 callers this contains Affinity 0, 1, 2 fields and for AAarch64 callers it has Affinity 0, 1, 2, 3 fields.
Fields§
§aff0: u8§aff1: u8§aff2: u8§aff3: Option<u8>Trait Implementations§
impl Copy for Mpidr
impl Eq for Mpidr
impl StructuralPartialEq for Mpidr
Auto Trait Implementations§
impl Freeze for Mpidr
impl RefUnwindSafe for Mpidr
impl Send for Mpidr
impl Sync for Mpidr
impl Unpin for Mpidr
impl UnwindSafe for Mpidr
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