#[repr(C, align(64))]pub struct EarlyBootArgs {
pub args: [usize; 4],
pub virt_entry: *mut (),
pub kimage_addr_lma: *mut (),
pub kimage_addr_vma: *mut (),
pub kcode_end: *mut (),
}Fields§
§args: [usize; 4]§virt_entry: *mut ()§kimage_addr_lma: *mut ()§kimage_addr_vma: *mut ()§kcode_end: *mut ()Implementations§
Source§impl EarlyBootArgs
impl EarlyBootArgs
Trait Implementations§
Source§impl Clone for EarlyBootArgs
impl Clone for EarlyBootArgs
Source§fn clone(&self) -> EarlyBootArgs
fn clone(&self) -> EarlyBootArgs
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 moreAuto Trait Implementations§
impl Freeze for EarlyBootArgs
impl RefUnwindSafe for EarlyBootArgs
impl !Send for EarlyBootArgs
impl !Sync for EarlyBootArgs
impl Unpin for EarlyBootArgs
impl UnwindSafe for EarlyBootArgs
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