Struct object::read::elf::ElfFile   [−][src]
A partially parsed ELF file.
Most of the functionality of this type is provided by the Object trait implementation.
Implementations
impl<'data, Elf: FileHeader> ElfFile<'data, Elf>[src]
Trait Implementations
impl<'data, Elf: Debug + FileHeader> Debug for ElfFile<'data, Elf> where
    Elf::Endian: Debug,
    Elf::ProgramHeader: Debug, [src]
Elf::Endian: Debug,
Elf::ProgramHeader: Debug,
impl<'data, 'file, Elf> Object<'data, 'file> for ElfFile<'data, Elf> where
    'data: 'file,
    Elf: FileHeader, [src]
'data: 'file,
Elf: FileHeader,
type Segment = ElfSegment<'data, 'file, Elf>
A segment in the object file.
type SegmentIterator = ElfSegmentIterator<'data, 'file, Elf>
An iterator over the segments in the object file.
type Section = ElfSection<'data, 'file, Elf>
A section in the object file.
type SectionIterator = ElfSectionIterator<'data, 'file, Elf>
An iterator over the sections in the object file.
type Comdat = ElfComdat<'data, 'file, Elf>
A COMDAT section group in the object file.
type ComdatIterator = ElfComdatIterator<'data, 'file, Elf>
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>
An iterator over dynamic relocations in the file. Read more
fn architecture(&self) -> Architecture[src]
fn is_little_endian(&self) -> bool[src]
fn is_64(&self) -> bool[src]
fn segments(&'file self) -> ElfSegmentIterator<'data, 'file, Elf>ⓘNotable traits for ElfSegmentIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSegmentIterator<'data, 'file, Elf>    type Item = ElfSegment<'data, 'file, Elf>;[src]
Notable traits for ElfSegmentIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSegmentIterator<'data, 'file, Elf>    type Item = ElfSegment<'data, 'file, Elf>;fn section_by_name(
    &'file self, 
    section_name: &str
) -> Option<ElfSection<'data, 'file, Elf>>[src]
&'file self,
section_name: &str
) -> Option<ElfSection<'data, 'file, Elf>>
fn section_by_index(
    &'file self, 
    index: SectionIndex
) -> Result<ElfSection<'data, 'file, Elf>>[src]
&'file self,
index: SectionIndex
) -> Result<ElfSection<'data, 'file, Elf>>
fn sections(&'file self) -> ElfSectionIterator<'data, 'file, Elf>ⓘNotable traits for ElfSectionIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSectionIterator<'data, 'file, Elf>    type Item = ElfSection<'data, 'file, Elf>;[src]
Notable traits for ElfSectionIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSectionIterator<'data, 'file, Elf>    type Item = ElfSection<'data, 'file, Elf>;fn comdats(&'file self) -> ElfComdatIterator<'data, 'file, Elf>ⓘNotable traits for ElfComdatIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfComdatIterator<'data, 'file, Elf>    type Item = ElfComdat<'data, 'file, Elf>;[src]
Notable traits for ElfComdatIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfComdatIterator<'data, 'file, Elf>    type Item = ElfComdat<'data, 'file, Elf>;fn symbol_by_index(
    &'file self, 
    index: SymbolIndex
) -> Result<ElfSymbol<'data, 'file, Elf>>[src]
&'file self,
index: SymbolIndex
) -> Result<ElfSymbol<'data, 'file, Elf>>
fn symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf>ⓘNotable traits for ElfSymbolIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSymbolIterator<'data, 'file, Elf>    type Item = ElfSymbol<'data, 'file, Elf>;[src]
Notable traits for ElfSymbolIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSymbolIterator<'data, 'file, Elf>    type Item = ElfSymbol<'data, 'file, Elf>;fn symbol_table(&'file self) -> Option<ElfSymbolTable<'data, 'file, Elf>>[src]
fn dynamic_symbols(&'file self) -> ElfSymbolIterator<'data, 'file, Elf>ⓘNotable traits for ElfSymbolIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSymbolIterator<'data, 'file, Elf>    type Item = ElfSymbol<'data, 'file, Elf>;[src]
Notable traits for ElfSymbolIterator<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> Iterator for ElfSymbolIterator<'data, 'file, Elf>    type Item = ElfSymbol<'data, 'file, Elf>;fn dynamic_symbol_table(
    &'file self
) -> Option<ElfSymbolTable<'data, 'file, Elf>>[src]
&'file self
) -> Option<ElfSymbolTable<'data, 'file, Elf>>
fn dynamic_relocations(
    &'file self
) -> Option<ElfDynamicRelocationIterator<'data, 'file, Elf>>[src]
&'file self
) -> Option<ElfDynamicRelocationIterator<'data, 'file, Elf>>
fn imports(&self) -> Result<Vec<Import<'data>>>[src]
Get the imported symbols.
fn exports(&self) -> Result<Vec<Export<'data>>>[src]
Get the exported symbols.
fn has_debug_symbols(&self) -> bool[src]
fn build_id(&self) -> Result<Option<&'data [u8]>>[src]
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>[src]
fn entry(&self) -> u64[src]
fn flags(&self) -> FileFlags[src]
fn endianness(&self) -> Endianness[src]
fn symbol_map(&'file self) -> SymbolMap<SymbolMapName<'data>>[src]
fn object_map(&'file self) -> ObjectMap<'data>[src]
fn mach_uuid(&self) -> Result<Option<[u8; 16]>>[src]
Auto Trait Implementations
impl<'data, Elf> Send for ElfFile<'data, Elf> where
    Elf: Sync,
    <Elf as FileHeader>::Endian: Send,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync, 
Elf: Sync,
<Elf as FileHeader>::Endian: Send,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Sync for ElfFile<'data, Elf> where
    Elf: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync, 
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Unpin for ElfFile<'data, Elf> where
    <Elf as FileHeader>::Endian: Unpin, 
<Elf as FileHeader>::Endian: Unpin,
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,