Struct mer::section::SectionHeader[][src]

#[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: u32section_type: u32flags: u64address: u64offset: u64size: u64link: 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: u64entry_size: u64

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

Implementations

impl SectionHeader[src]

pub fn section_type(&self) -> SectionType[src]

pub fn name<'a>(&self, elf: &'a Elf<'_>) -> Option<&'a str>[src]

pub fn data<'a>(&self, elf: &'a Elf<'_>) -> Option<&'a [u8]>[src]

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).

pub fn is_writable(&self) -> bool[src]

Whether this section contains writable data

pub fn is_allocated(&self) -> bool[src]

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

pub fn is_executable(&self) -> bool[src]

Whether this section contains executable instructions

Trait Implementations

impl Debug for SectionHeader[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for SectionHeader where
    SectionHeader: 'a, 
[src]

type Error = Error

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.