pub struct LoadInfo {
pub minimum_address_used: u64,
pub next_available_address: u64,
pub entrypoint: u64,
}
Expand description
Information about the loaded ELF image.
Fields§
§minimum_address_used: u64
The minimum physical address used when loading the ELF image. This may be different from the start_address provided, as the ELF image controls where it should be loaded.
next_available_address: u64
The next available physical address after the kernel was loaded.
entrypoint: u64
The entrypoint of the image.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadInfo
impl RefUnwindSafe for LoadInfo
impl Send for LoadInfo
impl Sync for LoadInfo
impl Unpin for LoadInfo
impl UnwindSafe for LoadInfo
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