pub struct LoadedElf {
pub vmar: Vmar,
pub vmar_base: usize,
pub entry: usize,
}Expand description
Return value of load_elf.
Fields§
§vmar: VmarThe VMAR that the ELF file was loaded into.
vmar_base: usizeThe virtual address of the VMAR.
entry: usizeThe ELF entry point, adjusted for the base address of the VMAR.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadedElf
impl RefUnwindSafe for LoadedElf
impl Send for LoadedElf
impl Sync for LoadedElf
impl Unpin for LoadedElf
impl UnwindSafe for LoadedElf
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