pub struct LoadedElf {
pub vmar: Vmar,
pub vmar_base: usize,
pub entry: usize,
}
Expand description
Return value of load_elf.
Fields§
§vmar: Vmar
The VMAR that the ELF file was loaded into.
vmar_base: usize
The virtual address of the VMAR.
entry: usize
The 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