pub struct CoffFile<'data, R: ReadRef<'data> = &'data [u8], Coff: CoffHeader = ImageFileHeader> { /* private fields */ }
Expand description
A COFF object file.
This is a file that starts with pe::ImageFileHeader
, and corresponds
to crate::FileKind::Coff
.
Most functionality is provided by the Object
trait implementation.
Implementations§
Trait Implementations§
source§impl<'data, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffFile<'data, R, Coff>
impl<'data, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffFile<'data, R, Coff>
source§impl<'data, 'file, R, Coff> Object<'data, 'file> for CoffFile<'data, R, Coff>where
R: 'file + ReadRef<'data>,
Coff: CoffHeader,
'data: 'file,
impl<'data, 'file, R, Coff> Object<'data, 'file> for CoffFile<'data, R, Coff>where
R: 'file + ReadRef<'data>,
Coff: CoffHeader,
'data: 'file,
§type Segment = CoffSegment<'data, 'file, R, Coff>
type Segment = CoffSegment<'data, 'file, R, Coff>
A loadable segment in the object file.
§type SegmentIterator = CoffSegmentIterator<'data, 'file, R, Coff>
type SegmentIterator = CoffSegmentIterator<'data, 'file, R, Coff>
An iterator for the loadable segments in the object file.
§type Section = CoffSection<'data, 'file, R, Coff>
type Section = CoffSection<'data, 'file, R, Coff>
A section in the object file.
§type SectionIterator = CoffSectionIterator<'data, 'file, R, Coff>
type SectionIterator = CoffSectionIterator<'data, 'file, R, Coff>
An iterator for the sections in the object file.
§type Comdat = CoffComdat<'data, 'file, R, Coff>
type Comdat = CoffComdat<'data, 'file, R, Coff>
A COMDAT section group in the object file.
§type ComdatIterator = CoffComdatIterator<'data, 'file, R, Coff>
type ComdatIterator = CoffComdatIterator<'data, 'file, R, Coff>
An iterator for the COMDAT section groups in the object file.
§type Symbol = CoffSymbol<'data, 'file, R, Coff>
type Symbol = CoffSymbol<'data, 'file, R, Coff>
A symbol in the object file.
§type SymbolIterator = CoffSymbolIterator<'data, 'file, R, Coff>
type SymbolIterator = CoffSymbolIterator<'data, 'file, R, Coff>
An iterator for symbols in the object file.
§type SymbolTable = CoffSymbolTable<'data, 'file, R, Coff>
type SymbolTable = CoffSymbolTable<'data, 'file, R, Coff>
A symbol table in the object file.
§type DynamicRelocationIterator = NoDynamicRelocationIterator
type DynamicRelocationIterator = NoDynamicRelocationIterator
An iterator for the dynamic relocations in the file. Read more
source§fn architecture(&self) -> Architecture
fn architecture(&self) -> Architecture
Get the architecture type of the file.
source§fn sub_architecture(&self) -> Option<SubArchitecture>
fn sub_architecture(&self) -> Option<SubArchitecture>
Get the sub-architecture type of the file if known. Read more
source§fn is_little_endian(&self) -> bool
fn is_little_endian(&self) -> bool
Return true if the file is little endian, false if it is big endian.
source§fn kind(&self) -> ObjectKind
fn kind(&self) -> ObjectKind
Return the kind of this object.
source§fn segments(&'file self) -> CoffSegmentIterator<'data, 'file, R, Coff> ⓘ
fn segments(&'file self) -> CoffSegmentIterator<'data, 'file, R, Coff> ⓘ
Get an iterator for the loadable segments in the file. Read more
source§fn section_by_name_bytes(
&'file self,
section_name: &[u8]
) -> Option<CoffSection<'data, 'file, R, Coff>>
fn section_by_name_bytes( &'file self, section_name: &[u8] ) -> Option<CoffSection<'data, 'file, R, Coff>>
Like
Self::section_by_name
, but allows names that are not UTF-8.source§fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<CoffSection<'data, 'file, R, Coff>>
fn section_by_index( &'file self, index: SectionIndex ) -> Result<CoffSection<'data, 'file, R, Coff>>
Get the section at the given index. Read more
source§fn sections(&'file self) -> CoffSectionIterator<'data, 'file, R, Coff> ⓘ
fn sections(&'file self) -> CoffSectionIterator<'data, 'file, R, Coff> ⓘ
Get an iterator for the sections in the file.
source§fn comdats(&'file self) -> CoffComdatIterator<'data, 'file, R, Coff> ⓘ
fn comdats(&'file self) -> CoffComdatIterator<'data, 'file, R, Coff> ⓘ
Get an iterator for the COMDAT section groups in the file.
source§fn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<CoffSymbol<'data, 'file, R, Coff>>
fn symbol_by_index( &'file self, index: SymbolIndex ) -> Result<CoffSymbol<'data, 'file, R, Coff>>
Get the debugging symbol at the given index. Read more
source§fn symbols(&'file self) -> CoffSymbolIterator<'data, 'file, R, Coff> ⓘ
fn symbols(&'file self) -> CoffSymbolIterator<'data, 'file, R, Coff> ⓘ
Get an iterator for the debugging symbols in the file. Read more
source§fn symbol_table(&'file self) -> Option<CoffSymbolTable<'data, 'file, R, Coff>>
fn symbol_table(&'file self) -> Option<CoffSymbolTable<'data, 'file, R, Coff>>
Get the debugging symbol table, if any.
source§fn dynamic_symbols(&'file self) -> CoffSymbolIterator<'data, 'file, R, Coff> ⓘ
fn dynamic_symbols(&'file self) -> CoffSymbolIterator<'data, 'file, R, Coff> ⓘ
Get an iterator for the dynamic linking symbols in the file. Read more
source§fn dynamic_symbol_table(
&'file self
) -> Option<CoffSymbolTable<'data, 'file, R, Coff>>
fn dynamic_symbol_table( &'file self ) -> Option<CoffSymbolTable<'data, 'file, R, Coff>>
Get the dynamic linking symbol table, if any. Read more
source§fn dynamic_relocations(&'file self) -> Option<NoDynamicRelocationIterator>
fn dynamic_relocations(&'file self) -> Option<NoDynamicRelocationIterator>
Get the dynamic relocations for this file. Read more
source§fn exports(&self) -> Result<Vec<Export<'data>>>
fn exports(&self) -> Result<Vec<Export<'data>>>
Get the exported symbols that expose both a name and an address. Read more
source§fn has_debug_symbols(&self) -> bool
fn has_debug_symbols(&self) -> bool
Return true if the file contains DWARF debug information sections, false if not.
source§fn relative_address_base(&self) -> u64
fn relative_address_base(&self) -> u64
Get the base address used for relative virtual addresses. Read more
source§fn endianness(&self) -> Endianness
fn endianness(&self) -> Endianness
Get the endianness of the file.
source§fn section_by_name(&'file self, section_name: &str) -> Option<Self::Section>
fn section_by_name(&'file self, section_name: &str) -> Option<Self::Section>
Get the section named
section_name
, if such a section exists. Read moresource§fn symbol_by_name(&'file self, symbol_name: &str) -> Option<Self::Symbol>
fn symbol_by_name(&'file self, symbol_name: &str) -> Option<Self::Symbol>
Get the symbol named
symbol_name
, if the symbol exists.source§fn symbol_by_name_bytes(&'file self, symbol_name: &[u8]) -> Option<Self::Symbol>
fn symbol_by_name_bytes(&'file self, symbol_name: &[u8]) -> Option<Self::Symbol>
Like
Self::symbol_by_name
, but allows names that are not UTF-8.source§fn symbol_map(&'file self) -> SymbolMap<SymbolMapName<'data>>
fn symbol_map(&'file self) -> SymbolMap<SymbolMapName<'data>>
Construct a map from addresses to symbol names. Read more
source§fn object_map(&'file self) -> ObjectMap<'data>
fn object_map(&'file self) -> ObjectMap<'data>
Construct a map from addresses to symbol names and object file names. Read more
source§fn build_id(&self) -> Result<Option<&'data [u8]>>
fn build_id(&self) -> Result<Option<&'data [u8]>>
The build ID from an ELF
NT_GNU_BUILD_ID
note.source§fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
The filename and CRC from a
.gnu_debuglink
section.Auto Trait Implementations§
impl<'data, R, Coff> RefUnwindSafe for CoffFile<'data, R, Coff>
impl<'data, R, Coff> Send for CoffFile<'data, R, Coff>
impl<'data, R, Coff> Sync for CoffFile<'data, R, Coff>
impl<'data, R, Coff> Unpin for CoffFile<'data, R, Coff>where
R: Unpin,
impl<'data, R, Coff> UnwindSafe for CoffFile<'data, R, Coff>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more