pub struct ZeroPageConfig<'a> {
pub address: u64,
pub mem_layout: &'a MemoryLayout,
pub acpi_base_address: u64,
pub acpi_len: usize,
}
Fields§
§address: u64
The address to load the zero page at.
mem_layout: &'a MemoryLayout
The memory layout used to build the e820 map.
acpi_base_address: u64
The base address acpi tables are loaded at.
acpi_len: usize
The overall size of acpi tables.
Auto Trait Implementations§
impl<'a> Freeze for ZeroPageConfig<'a>
impl<'a> RefUnwindSafe for ZeroPageConfig<'a>
impl<'a> Send for ZeroPageConfig<'a>
impl<'a> Sync for ZeroPageConfig<'a>
impl<'a> Unpin for ZeroPageConfig<'a>
impl<'a> UnwindSafe for ZeroPageConfig<'a>
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