Struct elfkit::section::SectionHeader[][src]

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

Fields

Methods

impl SectionHeader
[src]

Trait Implementations

impl Default for SectionHeader
[src]

Returns the "default value" for a type. Read more

impl Debug for SectionHeader
[src]

Formats the value using the given formatter. Read more

impl Clone for SectionHeader
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations