Struct object::read::File [−][src]
pub struct File<'data> { /* fields omitted */ }An object file.
Most functionality is provided by the Object trait implementation.
Implementations
impl<'data> File<'data>[src]
impl<'data> File<'data>[src]Trait Implementations
impl<'data, 'file> Object<'data, 'file> for File<'data> where
'data: 'file, [src]
impl<'data, 'file> Object<'data, 'file> for File<'data> where
'data: 'file, [src]type Segment = Segment<'data, 'file>
A segment in the object file.
type SegmentIterator = SegmentIterator<'data, 'file>
An iterator over the segments in the object file.
type Section = Section<'data, 'file>
A section in the object file.
type SectionIterator = SectionIterator<'data, 'file>
An iterator over the sections in the object file.
type Comdat = Comdat<'data, 'file>
A COMDAT section group in the object file.
type ComdatIterator = ComdatIterator<'data, 'file>
An iterator over the COMDAT section groups in the object file.
type Symbol = Symbol<'data, 'file>
A symbol in the object file.
type SymbolIterator = SymbolIterator<'data, 'file>
An iterator over symbols in the object file.
type SymbolTable = SymbolTable<'data, 'file>
A symbol table in the object file.
type DynamicRelocationIterator = DynamicRelocationIterator<'data, 'file>
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) -> SegmentIterator<'data, 'file>ⓘNotable traits for SegmentIterator<'data, 'file>
impl<'data, 'file> Iterator for SegmentIterator<'data, 'file> type Item = Segment<'data, 'file>;[src]
Notable traits for SegmentIterator<'data, 'file>
impl<'data, 'file> Iterator for SegmentIterator<'data, 'file> type Item = Segment<'data, 'file>;fn section_by_name(
&'file self,
section_name: &str
) -> Option<Section<'data, 'file>>[src]
&'file self,
section_name: &str
) -> Option<Section<'data, 'file>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file>>[src]
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file>>
fn sections(&'file self) -> SectionIterator<'data, 'file>ⓘNotable traits for SectionIterator<'data, 'file>
impl<'data, 'file> Iterator for SectionIterator<'data, 'file> type Item = Section<'data, 'file>;[src]
Notable traits for SectionIterator<'data, 'file>
impl<'data, 'file> Iterator for SectionIterator<'data, 'file> type Item = Section<'data, 'file>;fn comdats(&'file self) -> ComdatIterator<'data, 'file>ⓘNotable traits for ComdatIterator<'data, 'file>
impl<'data, 'file> Iterator for ComdatIterator<'data, 'file> type Item = Comdat<'data, 'file>;[src]
Notable traits for ComdatIterator<'data, 'file>
impl<'data, 'file> Iterator for ComdatIterator<'data, 'file> type Item = Comdat<'data, 'file>;fn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<Symbol<'data, 'file>>[src]
&'file self,
index: SymbolIndex
) -> Result<Symbol<'data, 'file>>
fn symbols(&'file self) -> SymbolIterator<'data, 'file>ⓘNotable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;[src]
Notable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;fn symbol_table(&'file self) -> Option<SymbolTable<'data, 'file>>[src]
fn dynamic_symbols(&'file self) -> SymbolIterator<'data, 'file>ⓘNotable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;[src]
Notable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;fn dynamic_symbol_table(&'file self) -> Option<SymbolTable<'data, 'file>>[src]
fn dynamic_relocations(
&'file self
) -> Option<DynamicRelocationIterator<'data, 'file>>[src]
&'file self
) -> Option<DynamicRelocationIterator<'data, 'file>>