Struct object::read::coff::CoffFile [−][src]
A COFF object file.
Implementations
impl<'data> CoffFile<'data>
[src]
Trait Implementations
impl<'data> Debug for CoffFile<'data>
[src]
impl<'data, 'file> Object<'data, 'file> for CoffFile<'data> where
'data: 'file,
[src]
'data: 'file,
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>;
fn dynamic_symbol_table(&'file self) -> Option<CoffSymbolTable<'data, 'file>>
[src]
fn dynamic_relocations(&'file self) -> Option<NoDynamicRelocationIterator>
[src]
fn imports(&self) -> Result<Vec<Import<'data>>>
[src]
fn exports(&self) -> Result<Vec<Export<'data>>>
[src]
fn has_debug_symbols(&self) -> bool
[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]
fn build_id(&self) -> Result<Option<&'data [u8]>>
[src]
fn gnu_debuglink(&self) -> Result<Option<(&'data [u8], u32)>>
[src]
Auto Trait Implementations
impl<'data> Send for CoffFile<'data>
impl<'data> Sync for CoffFile<'data>
impl<'data> Unpin for CoffFile<'data>
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>,