Struct elfkit::header::Header[][src]

pub struct Header {
    pub ident_magic: [u8; 4],
    pub ident_class: Class,
    pub ident_endianness: Endianness,
    pub ident_version: u8,
    pub ident_abi: Abi,
    pub ident_abiversion: u8,
    pub etype: ElfType,
    pub machine: Machine,
    pub version: u32,
    pub entry: u64,
    pub phoff: u64,
    pub shoff: u64,
    pub flags: HeaderFlags,
    pub ehsize: u16,
    pub phentsize: u16,
    pub phnum: u16,
    pub shentsize: u16,
    pub shnum: u16,
    pub shstrndx: u16,
}

Fields

Methods

impl Header
[src]

Trait Implementations

impl Debug for Header
[src]

Formats the value using the given formatter. Read more

impl Clone for Header
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Header
[src]

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

Auto Trait Implementations

impl Send for Header

impl Sync for Header