Struct object::read::coff::CoffFile [−][src]
pub struct CoffFile<'data> { /* fields omitted */ }
A COFF object file.
Implementations
impl<'data> CoffFile<'data>
[src]
impl<'data> CoffFile<'data>
[src]Trait Implementations
impl<'data, 'file> Object<'data, 'file> for CoffFile<'data> where
'data: 'file,
[src]
impl<'data, 'file> Object<'data, 'file> for CoffFile<'data> where
'data: 'file,
[src]type Segment = CoffSegment<'data, 'file>
A segment in the object file.
type SegmentIterator = CoffSegmentIterator<'data, 'file>
An iterator over the segments in the object file.
type Section = CoffSection<'data, 'file>
A section in the object file.
type SectionIterator = CoffSectionIterator<'data, 'file>
An iterator over the sections in the object file.
type Comdat = CoffComdat<'data, 'file>
A COMDAT section group in the object file.
type ComdatIterator = CoffComdatIterator<'data, 'file>
An iterator over the COMDAT section groups in the object file.
type Symbol = CoffSymbol<'data, 'file>
A symbol in the object file.
type SymbolIterator = CoffSymbolIterator<'data, 'file>
An iterator over symbols in the object file.
type SymbolTable = CoffSymbolTable<'data, 'file>
A symbol table in the object file.
type DynamicRelocationIterator = NoDynamicRelocationIterator
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) -> CoffSegmentIterator<'data, 'file>ⓘNotable traits for CoffSegmentIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSegmentIterator<'data, 'file> type Item = CoffSegment<'data, 'file>;
[src]
Notable traits for CoffSegmentIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSegmentIterator<'data, 'file> type Item = CoffSegment<'data, 'file>;
fn section_by_name(
&'file self,
section_name: &str
) -> Option<CoffSection<'data, 'file>>
[src]
&'file self,
section_name: &str
) -> Option<CoffSection<'data, 'file>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<CoffSection<'data, 'file>>
[src]
&'file self,
index: SectionIndex
) -> Result<CoffSection<'data, 'file>>
fn sections(&'file self) -> CoffSectionIterator<'data, 'file>ⓘNotable traits for CoffSectionIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSectionIterator<'data, 'file> type Item = CoffSection<'data, 'file>;
[src]
Notable traits for CoffSectionIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSectionIterator<'data, 'file> type Item = CoffSection<'data, 'file>;
fn comdats(&'file self) -> CoffComdatIterator<'data, 'file>ⓘNotable traits for CoffComdatIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffComdatIterator<'data, 'file> type Item = CoffComdat<'data, 'file>;
[src]
Notable traits for CoffComdatIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffComdatIterator<'data, 'file> type Item = CoffComdat<'data, 'file>;
fn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<CoffSymbol<'data, 'file>>
[src]
&'file self,
index: SymbolIndex
) -> Result<CoffSymbol<'data, 'file>>
fn symbols(&'file self) -> CoffSymbolIterator<'data, 'file>ⓘNotable traits for CoffSymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSymbolIterator<'data, 'file> type Item = CoffSymbol<'data, 'file>;
[src]
Notable traits for CoffSymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSymbolIterator<'data, 'file> type Item = CoffSymbol<'data, 'file>;
fn symbol_table(&'file self) -> Option<CoffSymbolTable<'data, 'file>>
[src]
fn dynamic_symbols(&'file self) -> CoffSymbolIterator<'data, 'file>ⓘNotable traits for CoffSymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSymbolIterator<'data, 'file> type Item = CoffSymbol<'data, 'file>;
[src]
Notable traits for CoffSymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffSymbolIterator<'data, 'file> type Item = CoffSymbol<'data, 'file>;