Struct object::elf::SectionHeader32[][src]

#[repr(C)]
pub struct SectionHeader32<E: Endian> { pub sh_name: U32<E>, pub sh_type: U32<E>, pub sh_flags: U32<E>, pub sh_addr: U32<E>, pub sh_offset: U32<E>, pub sh_size: U32<E>, pub sh_link: U32<E>, pub sh_info: U32<E>, pub sh_addralign: U32<E>, pub sh_entsize: U32<E>, }
Expand description

Section header.

Fields

sh_name: U32<E>

Section name.

This is an offset into the section header string table.

sh_type: U32<E>

Section type. One of the SHT_* constants.

sh_flags: U32<E>

Section flags. A combination of the SHF_* constants.

sh_addr: U32<E>

Section virtual address at execution.

sh_offset: U32<E>

Section file offset.

sh_size: U32<E>

Section size in bytes.

sh_link: U32<E>

Link to another section.

The section relationship depends on the sh_type value.

sh_info: U32<E>

Additional section information.

The meaning of this field depends on the sh_type value.

sh_addralign: U32<E>

Section alignment.

sh_entsize: U32<E>

Entry size if the section holds a table.

Trait Implementations

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

fn clone(&self) -> SectionHeader32<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 SectionHeader32<E>[src]

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

Formats the value using the given formatter. Read more

impl<Endian: Endian> SectionHeader for SectionHeader32<Endian>[src]

type Elf = FileHeader32<Endian>

type Word = u32

type Endian = Endian

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

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

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

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

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

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

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

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

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

fn name<'data>(
    &self,
    endian: Self::Endian,
    strings: StringTable<'data>
) -> Result<&'data [u8]>
[src]

Parse the section name from the string table.

fn file_range(&self, endian: Self::Endian) -> Option<(u64, u64)>[src]

Return the offset and size of the section in the file. Read more

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

Return the section data. Read more

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

Return the section data as a slice of the given type. Read more

fn symbols<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R,
    sections: &SectionTable<'_, Self::Elf>,
    section_index: usize
) -> Result<Option<SymbolTable<'data, Self::Elf>>>
[src]

Return the symbols in the section. Read more

fn rel<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<Option<&'data [<Self::Elf as FileHeader>::Rel]>>
[src]

Return the Elf::Rel entries in the section. Read more

fn rela<'data, R: ReadRef<'data>>(
    &self,
    endian: Self::Endian,
    data: R
) -> Result<Option<&'data [<Self::Elf as FileHeader>::Rela]>>
[src]

Return the Elf::Rela entries in the section. Read more

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

Return the symbol table for a relocation section. Read more

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

Return a note iterator for the section data. Read more

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

Return the contents of a group section. Read more

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

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

Auto Trait Implementations

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

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

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

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

impl<E> UnwindSafe for SectionHeader32<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.