pub struct Section64 {
pub sectname: String,
pub segname: String,
pub addr: u64,
pub size: u64,
pub offset: u32,
pub align: u32,
pub reloff: u32,
pub nreloc: u32,
pub flags: (SectionAttrs, SectionType),
pub reserved1: u32,
pub reserved2: u32,
pub reserved3: u32,
}Fields§
§sectname: String16-byte string
segname: String16-byte string
addr: u64memory address of this section
size: u64size in bytes of this section
offset: u32file offset of this section
align: u32section alignment (power of 2)
reloff: u32file offset of the first relocation entry for this section
nreloc: u32number of relocation entries for this section
flags: (SectionAttrs, SectionType)represented as u32. higher 3 bytes represent SectionAttrs, lower 1 byte represent SectionType.
reserved1: u32§reserved2: u32§reserved3: u32Implementations§
Trait Implementations§
impl Eq for Section64
impl StructuralPartialEq for Section64
Auto Trait Implementations§
impl Freeze for Section64
impl RefUnwindSafe for Section64
impl Send for Section64
impl Sync for Section64
impl Unpin for Section64
impl UnwindSafe for Section64
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