[−][src]Struct object::read::coff::CoffFile
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 SymbolIterator = CoffSymbolIterator<'data, 'file>
An iterator over the symbols in the object file.
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>
[src]
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>
[src]
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Symbol<'data>>
[src]
fn symbols(&'file self) -> CoffSymbolIterator<'data, 'file>
[src]
fn dynamic_symbols(&'file self) -> CoffSymbolIterator<'data, 'file>
[src]
fn symbol_map(&self) -> SymbolMap<'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_data(
&'file self,
symbol: &Symbol<'data>
) -> Result<Option<&'data [u8]>>
[src]
&'file self,
symbol: &Symbol<'data>
) -> Result<Option<&'data [u8]>>
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,
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.
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>,