Struct object::read::elf::ElfFile[][src]

pub struct ElfFile<'data, Elf, R = &'data [u8]> where
    Elf: FileHeader,
    R: ReadRef<'data>, 
{ /* fields omitted */ }

A partially parsed ELF file.

Most of the functionality of this type is provided by the Object trait implementation.

Implementations

impl<'data, Elf, R> ElfFile<'data, Elf, R> where
    Elf: FileHeader,
    R: ReadRef<'data>, 
[src]

pub fn parse(data: R) -> Result<Self>[src]

Parse the raw ELF file data.

pub fn endian(&self) -> Elf::Endian[src]

Returns the endianness.

pub fn data(&self) -> R[src]

Returns the raw data.

pub fn raw_header(&self) -> &'data Elf[src]

Returns the raw ELF file header.

pub fn raw_segments(&self) -> &'data [Elf::ProgramHeader][src]

Returns the raw ELF segments.

Trait Implementations

impl<'data, Elf: Debug, R: Debug> Debug for ElfFile<'data, Elf, R> where
    Elf: FileHeader,
    R: ReadRef<'data>,
    Elf::Endian: Debug,
    Elf::ProgramHeader: Debug
[src]

impl<'data, 'file, Elf, R> Object<'data, 'file> for ElfFile<'data, Elf, R> where
    'data: 'file,
    Elf: FileHeader,
    R: 'file + ReadRef<'data>, 
[src]

type Segment = ElfSegment<'data, 'file, Elf, R>

A segment in the object file.

type SegmentIterator = ElfSegmentIterator<'data, 'file, Elf, R>

An iterator over the segments in the object file.

type Section = ElfSection<'data, 'file, Elf, R>

A section in the object file.

type SectionIterator = ElfSectionIterator<'data, 'file, Elf, R>

An iterator over the sections in the object file.

type Comdat = ElfComdat<'data, 'file, Elf, R>

A COMDAT section group in the object file.

type ComdatIterator = ElfComdatIterator<'data, 'file, Elf, R>

An iterator over the COMDAT section groups in the object file.

type Symbol = ElfSymbol<'data, 'file, Elf>

A symbol in the object file.

type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf>

An iterator over symbols in the object file.

type SymbolTable = ElfSymbolTable<'data, 'file, Elf>

A symbol table in the object file.

type DynamicRelocationIterator = ElfDynamicRelocationIterator<'data, 'file, Elf, R>

An iterator over dynamic relocations in the file. Read more

fn imports(&self) -> Result<Vec<Import<'data>>>[src]

Get the imported symbols.

fn exports(&self) -> Result<Vec<Export<'data>>>[src]

Get the exported symbols.

Auto Trait Implementations

impl<'data, Elf, R> Send for ElfFile<'data, Elf, R> where
    Elf: Sync,
    R: Send,
    <Elf as FileHeader>::Endian: Send,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync

impl<'data, Elf, R> Sync for ElfFile<'data, Elf, R> where
    Elf: Sync,
    R: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync

impl<'data, Elf, R> Unpin for ElfFile<'data, Elf, R> where
    R: Unpin,
    <Elf as FileHeader>::Endian: Unpin

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.