Struct object::read::pe::PeFile [−][src]
pub struct PeFile<'data, Pe, R = &'data [u8]> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, { /* fields omitted */ }
Expand description
A PE object file.
Implementations
Return the DOS header of this file
Return the NT Headers of this file
Trait Implementations
impl<'data, 'file, Pe, R> Object<'data, 'file> for PeFile<'data, Pe, R> where
'data: 'file,
Pe: ImageNtHeaders,
R: 'file + ReadRef<'data>,
impl<'data, 'file, Pe, R> Object<'data, 'file> for PeFile<'data, Pe, R> where
'data: 'file,
Pe: ImageNtHeaders,
R: 'file + ReadRef<'data>,
type SegmentIterator = PeSegmentIterator<'data, 'file, Pe, R>
type SegmentIterator = PeSegmentIterator<'data, 'file, Pe, R>
An iterator over the segments in the object file.
type SectionIterator = PeSectionIterator<'data, 'file, Pe, R>
type SectionIterator = PeSectionIterator<'data, 'file, Pe, R>
An iterator over the sections in the object file.
type ComdatIterator = PeComdatIterator<'data, 'file, Pe, R>
type ComdatIterator = PeComdatIterator<'data, 'file, Pe, R>
An iterator over the COMDAT section groups in the object file.
type Symbol = CoffSymbol<'data, 'file>
type Symbol = CoffSymbol<'data, 'file>
A symbol in the object file.
type SymbolIterator = CoffSymbolIterator<'data, 'file>
type SymbolIterator = CoffSymbolIterator<'data, 'file>
An iterator over symbols in the object file.
type SymbolTable = CoffSymbolTable<'data, 'file>
type SymbolTable = CoffSymbolTable<'data, 'file>
A symbol table in the object file.
An iterator over dynamic relocations in the file. Read more
Get the architecture type of the file.
Return true if the file is little endian, false if it is big endian.
fn segments(&'file self) -> PeSegmentIterator<'data, 'file, Pe, R>ⓘNotable traits for PeSegmentIterator<'data, 'file, Pe, R>impl<'data, 'file, Pe, R> Iterator for PeSegmentIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeSegment<'data, 'file, Pe, R>;
fn segments(&'file self) -> PeSegmentIterator<'data, 'file, Pe, R>ⓘNotable traits for PeSegmentIterator<'data, 'file, Pe, R>impl<'data, 'file, Pe, R> Iterator for PeSegmentIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeSegment<'data, 'file, Pe, R>;
impl<'data, 'file, Pe, R> Iterator for PeSegmentIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeSegment<'data, 'file, Pe, R>;
Get an iterator over the segments in the file.
Get the section named section_name
, if such a section exists. Read more
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<PeSection<'data, 'file, Pe, R>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<PeSection<'data, 'file, Pe, R>>
Get the section at the given index. Read more
fn sections(&'file self) -> PeSectionIterator<'data, 'file, Pe, R>ⓘNotable traits for PeSectionIterator<'data, 'file, Pe, R>impl<'data, 'file, Pe, R> Iterator for PeSectionIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeSection<'data, 'file, Pe, R>;
fn sections(&'file self) -> PeSectionIterator<'data, 'file, Pe, R>ⓘNotable traits for PeSectionIterator<'data, 'file, Pe, R>impl<'data, 'file, Pe, R> Iterator for PeSectionIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeSection<'data, 'file, Pe, R>;
impl<'data, 'file, Pe, R> Iterator for PeSectionIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeSection<'data, 'file, Pe, R>;
Get an iterator over the sections in the file.
fn comdats(&'file self) -> PeComdatIterator<'data, 'file, Pe, R>ⓘNotable traits for PeComdatIterator<'data, 'file, Pe, R>impl<'data, 'file, Pe, R> Iterator for PeComdatIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeComdat<'data, 'file, Pe, R>;
fn comdats(&'file self) -> PeComdatIterator<'data, 'file, Pe, R>ⓘNotable traits for PeComdatIterator<'data, 'file, Pe, R>impl<'data, 'file, Pe, R> Iterator for PeComdatIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeComdat<'data, 'file, Pe, R>;
impl<'data, 'file, Pe, R> Iterator for PeComdatIterator<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, type Item = PeComdat<'data, 'file, Pe, R>;
Get an iterator over the COMDAT section groups in the file.
Get the debugging symbol at the given index. Read more
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>;
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>;
impl<'data, 'file> Iterator for CoffSymbolIterator<'data, 'file> type Item = CoffSymbol<'data, 'file>;
Get an iterator over the debugging symbols in the file. Read more
Get the symbol table, if any.
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>;
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>;
impl<'data, 'file> Iterator for CoffSymbolIterator<'data, 'file> type Item = CoffSymbol<'data, 'file>;
Get an iterator over the dynamic linking symbols in the file. Read more
Get the dynamic linking symbol table, if any. Read more
Get the dynamic relocations for this file. Read more
Return true if the file contains debug information sections, false if not.
Get the endianness of the file.
Construct a map from addresses to symbol names. Read more
Construct a map from addresses to symbol names and object file names. Read more
The build ID from an ELF NT_GNU_BUILD_ID
note.
The filename and CRC from a .gnu_debuglink
section.