Struct object::elf::FileHeader32[][src]

#[repr(C)]
pub struct FileHeader32<E: Endian> {
Show fields pub e_ident: Ident, pub e_type: U16<E>, pub e_machine: U16<E>, pub e_version: U32<E>, pub e_entry: U32<E>, pub e_phoff: U32<E>, pub e_shoff: U32<E>, pub e_flags: U32<E>, pub e_ehsize: U16<E>, pub e_phentsize: U16<E>, pub e_phnum: U16<E>, pub e_shentsize: U16<E>, pub e_shnum: U16<E>, pub e_shstrndx: U16<E>,
}
Expand description

The header at the start of every 32-bit ELF file.

Fields

e_ident: Ident

Magic number and other information.

e_type: U16<E>

Object file type. One of the ET_* constants.

e_machine: U16<E>

Architecture. One of the EM_* constants.

e_version: U32<E>

Object file version. Must be EV_CURRENT.

e_entry: U32<E>

Entry point virtual address.

e_phoff: U32<E>

Program header table file offset.

e_shoff: U32<E>

Section header table file offset.

e_flags: U32<E>

Processor-specific flags.

A combination of the EF_* constants.

e_ehsize: U16<E>

Size in bytes of this header.

e_phentsize: U16<E>

Program header table entry size.

e_phnum: U16<E>

Program header table entry count.

If the count is greater than or equal to PN_XNUM then this field is set to PN_XNUM and the count is stored in the sh_info field of section 0.

e_shentsize: U16<E>

Section header table entry size.

e_shnum: U16<E>

Section header table entry count.

If the count is greater than or equal to SHN_LORESERVE then this field is set to 0 and the count is stored in the sh_size field of section 0. first section header.

e_shstrndx: U16<E>

Section header string table index.

If the index is greater than or equal to SHN_LORESERVE then this field is set to SHN_XINDEX and the index is stored in the sh_link field of section 0.

Trait Implementations

impl<E: Clone + Endian> Clone for FileHeader32<E>[src]

fn clone(&self) -> FileHeader32<E>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<E: Debug + Endian> Debug for FileHeader32<E>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<Endian: Endian> FileHeader for FileHeader32<Endian>[src]

type Word = u32

type Sword = i32

type Endian = Endian

type ProgramHeader = ProgramHeader32<Endian>

type SectionHeader = SectionHeader32<Endian>

type CompressionHeader = CompressionHeader32<Endian>

type NoteHeader = NoteHeader32<Endian>

type Dyn = Dyn32<Endian>

type Sym = Sym32<Endian>

type Rel = Rel32<Endian>

type Rela = Rela32<Endian>

fn is_type_64(&self) -> bool[src]

Return true if this type is a 64-bit header. Read more

fn e_ident(&self) -> &Ident[src]

fn e_type(&self, endian: Self::Endian) -> u16[src]

fn e_machine(&self, endian: Self::Endian) -> u16[src]

fn e_version(&self, endian: Self::Endian) -> u32[src]

fn e_entry(&self, endian: Self::Endian) -> Self::Word[src]

fn e_phoff(&self, endian: Self::Endian) -> Self::Word[src]

fn e_shoff(&self, endian: Self::Endian) -> Self::Word[src]

fn e_flags(&self, endian: Self::Endian) -> u32[src]

fn e_ehsize(&self, endian: Self::Endian) -> u16[src]

fn e_phentsize(&self, endian: Self::Endian) -> u16[src]

fn e_phnum(&self, endian: Self::Endian) -> u16[src]

fn e_shentsize(&self, endian: Self::Endian) -> u16[src]

fn e_shnum(&self, endian: Self::Endian) -> u16[src]

fn e_shstrndx(&self, endian: Self::Endian) -> u16[src]

fn parse<'data, R: ReadRef<'data>>(data: R) -> Result<&'data Self>[src]

Read the file header. Read more

fn is_supported(&self) -> bool[src]

Check that the ident field in the file header is a supported format. Read more

fn is_class_32(&self) -> bool[src]

fn is_class_64(&self) -> bool[src]

fn is_little_endian(&self) -> bool[src]

fn is_big_endian(&self) -> bool[src]

fn endian(&self) -> Result<Self::Endian>[src]

fn section_0<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<Option<&'data Self::SectionHeader>>
[src]

Return the first section header, if present. Read more

fn phnum<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<usize>
[src]

Return the e_phnum field of the header. Handles extended values. Read more

fn shnum<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<usize>
[src]

Return the e_shnum field of the header. Handles extended values. Read more

fn shstrndx<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<u32>
[src]

Return the e_shstrndx field of the header. Handles extended values. Read more

fn program_headers<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<&'data [Self::ProgramHeader]>
[src]

Return the slice of program headers. Read more

fn section_headers<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<&'data [Self::SectionHeader]>
[src]

Return the slice of section headers. Read more

fn section_strings<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R,
    sections: &[Self::SectionHeader]
) -> Result<StringTable<'data>>
[src]

Return the string table for the section headers.

fn sections<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<SectionTable<'data, Self>>
[src]

Return the section table.

fn is_mips64el(&self, endian: Self::Endian) -> bool[src]

Returns whether this is a mips64el elf file.

impl<E: Copy + Endian> Copy for FileHeader32<E>[src]

impl<E: Endian> Pod for FileHeader32<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for FileHeader32<E> where
    E: RefUnwindSafe

impl<E> Send for FileHeader32<E> where
    E: Send

impl<E> Sync for FileHeader32<E> where
    E: Sync

impl<E> Unpin for FileHeader32<E> where
    E: Unpin

impl<E> UnwindSafe for FileHeader32<E> where
    E: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.