[][src]Struct object::PeFile

pub struct PeFile<'data> { /* fields omitted */ }

A PE object file.

Methods

impl<'data> PeFile<'data>[src]

pub fn pe(&self) -> &PE<'data>[src]

Get the PE headers of the file.

pub fn parse(data: &'data [u8]) -> Result<Self, &'static str>[src]

Parse the raw PE file data.

pub fn is_64(&self) -> bool[src]

True for 64-bit files.

Trait Implementations

impl<'data, 'file> Object<'data, 'file> for PeFile<'data> where
    'data: 'file, 
[src]

type Segment = PeSegment<'data, 'file>

A segment in the object file.

type SegmentIterator = PeSegmentIterator<'data, 'file>

An iterator over the segments in the object file.

type Section = PeSection<'data, 'file>

A section in the object file.

type SectionIterator = PeSectionIterator<'data, 'file>

An iterator over the sections in the object file.

type SymbolIterator = PeSymbolIterator<'data, 'file>

An iterator over the symbols in the object file.

fn section_data_by_name(
    &'file self,
    section_name: &str
) -> Option<Cow<'data, [u8]>>
[src]

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.

fn build_id(&self) -> Option<&'data [u8]>[src]

The build ID from an ELF NT_GNU_BUILD_ID note.

The filename and CRC from a .gnu_debuglink section.

impl<'data> Debug for PeFile<'data>[src]

Auto Trait Implementations

impl<'data> Unpin for PeFile<'data>

impl<'data> Send for PeFile<'data>

impl<'data> Sync for PeFile<'data>

impl<'data> UnwindSafe for PeFile<'data>

impl<'data> RefUnwindSafe for PeFile<'data>

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]