pub struct Section {
pub name: String,
pub va_start: u32,
pub mapped_size: u32,
pub perm: Perm,
}Expand description
Loaded-section descriptor — the union of the file header’s
IMAGE_SECTION_HEADER and the runtime layout choices we
make.
Fields§
§name: String§va_start: u32Final VA where this section was mapped.
mapped_size: u32Mapped size (rounded up to the page size).
perm: PermFinal permission bits.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Section
impl RefUnwindSafe for Section
impl Send for Section
impl Sync for Section
impl Unpin for Section
impl UnsafeUnpin for Section
impl UnwindSafe for Section
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