Struct elfloader::elf::SectionHeader[][src]

pub struct SectionHeader {
    pub name: StrOffset,
    pub shtype: SectionType,
    pub flags: SectionFlag,
    pub addr: u64,
    pub offset: u64,
    pub size: u64,
    pub link: u32,
    pub info: u32,
    pub addralign: u64,
    pub entsize: u64,
}

Encapsulates the contents of an ELF Section Header

Fields

Section Name

Section Type

Section Flags

in-memory address where this section is loaded

Byte-offset into the file where this section starts

Section size in bytes

Defined by section type

Defined by section type

address alignment

size of an entry if section data is an array of entries

Trait Implementations

impl Debug for SectionHeader
[src]

Formats the value using the given formatter. Read more

impl Display for SectionHeader
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations