Struct mer::section::SectionHeader

source ·
#[repr(C)]
pub struct SectionHeader { pub name: u32, pub section_type: u32, pub flags: u64, pub address: u64, pub offset: u64, pub size: u64, pub link: u32, pub info: u32, pub alignment: u64, pub entry_size: u64, }

Fields§

§name: u32§section_type: u32§flags: u64§address: u64§offset: u64§size: u64§link: u32

Some sections are ‘linked’ to another section. This field contains the index of the linked section.

§info: u32

Can contain extra information about a section.

§alignment: u64§entry_size: u64

If this section contains a table, this is the size of one entry

Implementations§

Get this section’s data, as a byte slice. Returns None if the image isn’t represented in the file (for example, NoBits sections don’t have any data).

Whether this section contains writable data

Whether this section should be allocated into the memory image of the program

Whether this section contains executable instructions

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.