#[repr(C)]pub struct BootInfo {
pub implementer: *const c_char,
pub variant: *const c_char,
pub mmap: [MemMapEntry; 8],
pub mmap_len: usize,
}Expand description
The boot information structure.
Fields§
§implementer: *const c_charThe implementer of the processor.
variant: *const c_charThe variant of the processor.
mmap: [MemMapEntry; 8]The memory map.
mmap_len: usizeThe length of the memory map.
Auto Trait Implementations§
impl Freeze for BootInfo
impl RefUnwindSafe for BootInfo
impl !Send for BootInfo
impl !Sync for BootInfo
impl Unpin for BootInfo
impl UnwindSafe for BootInfo
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