pub struct ElfMemoryRequirements {
pub size: u64,
pub align: u64,
pub min_addr: u64,
}Expand description
Basic information about the memory segments of an elf file.
Fields§
§size: u64total size needed for all segments
align: u64memory alignment for the elf file
min_addr: u64the smallest virtual address used by the elf file
Auto Trait Implementations§
impl Freeze for ElfMemoryRequirements
impl RefUnwindSafe for ElfMemoryRequirements
impl Send for ElfMemoryRequirements
impl Sync for ElfMemoryRequirements
impl Unpin for ElfMemoryRequirements
impl UnwindSafe for ElfMemoryRequirements
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