[−][src]Struct object::ElfFile
An ELF object file.
Methods
impl<'data> ElfFile<'data>
[src]
pub fn elf(&self) -> &Elf<'data>
[src]
Get the ELF headers of the file.
pub fn parse(data: &'data [u8]) -> Result<Self, &'static str>
[src]
Parse the raw ELF file data.
pub fn is_64(&self) -> bool
[src]
True for 64-bit files.
Trait Implementations
impl<'data, 'file> Object<'data, 'file> for ElfFile<'data> where
'data: 'file,
[src]
'data: 'file,
type Segment = ElfSegment<'data, 'file>
A segment in the object file.
type SegmentIterator = ElfSegmentIterator<'data, 'file>
An iterator over the segments in the object file.
type Section = ElfSection<'data, 'file>
A section in the object file.
type SectionIterator = ElfSectionIterator<'data, 'file>
An iterator over the sections in the object file.
type SymbolIterator = ElfSymbolIterator<'data, 'file>
An iterator over the symbols in the object file.
fn machine(&self) -> Machine
[src]
ⓘImportant traits for ElfSegmentIterator<'data, 'file>fn segments(&'file self) -> ElfSegmentIterator<'data, 'file>
[src]
ⓘImportant traits for ElfSegmentIterator<'data, 'file>
fn section_by_name(
&'file self,
section_name: &str
) -> Option<ElfSection<'data, 'file>>
[src]
&'file self,
section_name: &str
) -> Option<ElfSection<'data, 'file>>
fn section_by_index(
&'file self,
index: SectionIndex
) -> Option<ElfSection<'data, 'file>>
[src]
&'file self,
index: SectionIndex
) -> Option<ElfSection<'data, 'file>>
ⓘImportant traits for ElfSectionIterator<'data, 'file>fn sections(&'file self) -> ElfSectionIterator<'data, 'file>
[src]
ⓘImportant traits for ElfSectionIterator<'data, 'file>
fn symbol_by_index(&self, index: SymbolIndex) -> Option<Symbol<'data>>
[src]
ⓘImportant traits for ElfSymbolIterator<'data, 'file>fn symbols(&'file self) -> ElfSymbolIterator<'data, 'file>
[src]
ⓘImportant traits for ElfSymbolIterator<'data, 'file>
ⓘImportant traits for ElfSymbolIterator<'data, 'file>fn dynamic_symbols(&'file self) -> ElfSymbolIterator<'data, 'file>
[src]
ⓘImportant traits for ElfSymbolIterator<'data, 'file>
fn symbol_map(&self) -> SymbolMap<'data>
[src]
fn is_little_endian(&self) -> bool
[src]
fn has_debug_symbols(&self) -> bool
[src]
fn build_id(&self) -> Option<&'data [u8]>
[src]
fn gnu_debuglink(&self) -> Option<(&'data [u8], u32)>
[src]
fn entry(&self) -> u64
[src]
fn section_data_by_name(
&'file self,
section_name: &str
) -> Option<Cow<'data, [u8]>>
[src]
&'file self,
section_name: &str
) -> Option<Cow<'data, [u8]>>
Get the contents of the section named section_name
, if such a section exists. Read more
fn symbol_data(&'file self, symbol: &Symbol<'data>) -> Option<&'data [u8]>
[src]
Get the data for the given symbol.
fn mach_uuid(&self) -> Option<Uuid>
[src]
The UUID from a Mach-O LC_UUID
load command.
impl<'data> Debug for ElfFile<'data>
[src]
Auto Trait Implementations
impl<'data> Unpin for ElfFile<'data>
impl<'data> Sync for ElfFile<'data>
impl<'data> Send for ElfFile<'data>
impl<'data> RefUnwindSafe for ElfFile<'data>
impl<'data> UnwindSafe for ElfFile<'data>
Blanket Implementations
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> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,