pub struct LoadedElfInfo {
pub low: usize,
pub high: usize,
pub max_perm: SegmentFlags,
}
Expand description
Information on what an ELF requires of its address space.
Fields§
§low: usize
The lowest address of the loaded ELF.
high: usize
The highest address of the loaded ELF.
max_perm: SegmentFlags
Union of all address space permissions required to load the ELF.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadedElfInfo
impl RefUnwindSafe for LoadedElfInfo
impl Send for LoadedElfInfo
impl Sync for LoadedElfInfo
impl Unpin for LoadedElfInfo
impl UnwindSafe for LoadedElfInfo
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