[][src]Struct elf_rs::Elf32

pub struct Elf32<'a>(_);

Methods

impl<'a> Elf32<'a>[src]

pub fn new(buf: &'a [u8]) -> Self[src]

Trait Implementations

impl<'a> GenElf for Elf32<'a>[src]

type Word = u32

type ElfHeaderType = ElfHeader32

type ProgramHeaderType = ProgramHeader32

type SectionHeaderType = SectionHeader32

fn header(&self) -> &Self::ElfHeaderType[src]

fn program_headers(&self) -> &[Self::ProgramHeaderType][src]

Important traits for ProgramHeaderIter<'a, E>
fn program_header_iter(&self) -> ProgramHeaderIter<Self>[src]

fn section_headers(&self) -> &[Self::SectionHeaderType][src]

Important traits for SectionHeaderIter<'a, E>
fn section_header_iter(&self) -> SectionHeaderIter<Self>[src]

fn shstr_section(&self) -> &[u8][src]

fn lookup_section(&self, name: &[u8]) -> Option<SectionHeader<Self>>[src]

impl<'a> Debug for Elf32<'a>[src]

Auto Trait Implementations

impl<'a> Send for Elf32<'a>

impl<'a> Sync for Elf32<'a>

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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