#[repr(C)]pub struct Params {
pub flags: u64,
pub mpidr: u64,
pub pc: u64,
pub gprs: [u64; 8],
pub num_aux: u64,
pub aux: [u64; 16],
/* private fields */
}
Fields§
§flags: u64
§mpidr: u64
§pc: u64
§gprs: [u64; 8]
§num_aux: u64
§aux: [u64; 16]
Implementations§
Trait Implementations§
source§impl SafetyAssured for Params
impl SafetyAssured for Params
source§fn is_initialized(&self) -> bool
fn is_initialized(&self) -> bool
Checks if the instance is properly initialized. Read more
source§fn verify_ownership(&self) -> bool
fn verify_ownership(&self) -> bool
Checks whether ownership rules are upheld for this instance,
with a particular focus on instances that originate from raw pointers. Read more
source§impl SafetyChecked for Params
impl SafetyChecked for Params
fn is_not_null(&self) -> bool
fn is_aligned(&self) -> bool
impl Copy for Params
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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