Struct object::read::File [−][src]
An object file.
Most functionality is provided by the Object
trait implementation.
Implementations
impl<'data> File<'data>
[src]
pub fn parse(data: &'data [u8]) -> Result<Self>
[src]
Parse the raw file data.
pub fn format(&self) -> BinaryFormat
[src]
Return the file format.
Trait Implementations
impl<'data> Debug for File<'data>
[src]
impl<'data, 'file> Object<'data, 'file> for File<'data> where
'data: 'file,
[src]
'data: 'file,
type Segment = Segment<'data, 'file>
A segment in the object file.
type SegmentIterator = SegmentIterator<'data, 'file>
An iterator over the segments in the object file.
type Section = Section<'data, 'file>
A section in the object file.
type SectionIterator = SectionIterator<'data, 'file>
An iterator over the sections in the object file.
type Comdat = Comdat<'data, 'file>
A COMDAT section group in the object file.
type ComdatIterator = ComdatIterator<'data, 'file>
An iterator over the COMDAT section groups in the object file.
type Symbol = Symbol<'data, 'file>
A symbol in the object file.
type SymbolIterator = SymbolIterator<'data, 'file>
An iterator over symbols in the object file.
type SymbolTable = SymbolTable<'data, 'file>
A symbol table in the object file.
type DynamicRelocationIterator = DynamicRelocationIterator<'data, 'file>
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) -> SegmentIterator<'data, 'file>ⓘNotable traits for SegmentIterator<'data, 'file>
impl<'data, 'file> Iterator for SegmentIterator<'data, 'file> type Item = Segment<'data, 'file>;
[src]
Notable traits for SegmentIterator<'data, 'file>
impl<'data, 'file> Iterator for SegmentIterator<'data, 'file> type Item = Segment<'data, 'file>;
fn section_by_name(
&'file self,
section_name: &str
) -> Option<Section<'data, 'file>>
[src]
&'file self,
section_name: &str
) -> Option<Section<'data, 'file>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file>>
[src]
&'file self,
index: SectionIndex
) -> Result<Section<'data, 'file>>
fn sections(&'file self) -> SectionIterator<'data, 'file>ⓘNotable traits for SectionIterator<'data, 'file>
impl<'data, 'file> Iterator for SectionIterator<'data, 'file> type Item = Section<'data, 'file>;
[src]
Notable traits for SectionIterator<'data, 'file>
impl<'data, 'file> Iterator for SectionIterator<'data, 'file> type Item = Section<'data, 'file>;
fn comdats(&'file self) -> ComdatIterator<'data, 'file>ⓘNotable traits for ComdatIterator<'data, 'file>
impl<'data, 'file> Iterator for ComdatIterator<'data, 'file> type Item = Comdat<'data, 'file>;
[src]
Notable traits for ComdatIterator<'data, 'file>
impl<'data, 'file> Iterator for ComdatIterator<'data, 'file> type Item = Comdat<'data, 'file>;
fn symbol_by_index(
&'file self,
index: SymbolIndex
) -> Result<Symbol<'data, 'file>>
[src]
&'file self,
index: SymbolIndex
) -> Result<Symbol<'data, 'file>>
fn symbols(&'file self) -> SymbolIterator<'data, 'file>ⓘNotable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;
[src]
Notable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;
fn symbol_table(&'file self) -> Option<SymbolTable<'data, 'file>>
[src]
fn dynamic_symbols(&'file self) -> SymbolIterator<'data, 'file>ⓘNotable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;
[src]
Notable traits for SymbolIterator<'data, 'file>
impl<'data, 'file> Iterator for SymbolIterator<'data, 'file> type Item = Symbol<'data, 'file>;
fn dynamic_symbol_table(&'file self) -> Option<SymbolTable<'data, 'file>>
[src]
fn dynamic_relocations(
&'file self
) -> Option<DynamicRelocationIterator<'data, 'file>>
[src]
&'file self
) -> Option<DynamicRelocationIterator<'data, 'file>>
fn symbol_map(&self) -> SymbolMap<SymbolMapName<'data>>
[src]
fn object_map(&self) -> ObjectMap<'data>
[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 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]
fn entry(&self) -> u64
[src]
fn flags(&self) -> FileFlags
[src]
fn endianness(&self) -> Endianness
[src]
Auto Trait Implementations
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>,