pelf 0.1.5

A library for parsing/generating/analyzing ELF
Documentation
/// section flags
mod flag;
pub use flag::*;

/// section types.
mod section_type;
pub use section_type::*;

/// section header table.
mod table;
pub use table::*;

/// section header.
mod header;
pub use header::*;

/// section header builder.
mod builder;
pub use builder::*;

/// section data
mod data;
pub use data::*;

/// the elf64 section.
pub type Elf64Sections = Vec<Elf64Section>;

pub struct Elf64Section {
    pub name: String,
    pub header: Elf64SectionHeader,
    pub data: Elf64SectionData,
}

/// the set of the raw representation section data.
pub type RawElf64Sections = Vec<RawElf64Section>;
/// the raw representation section data.
pub type RawElf64Section = Vec<u8>;