[][src]Struct goblin::pe::export::ExportData

pub struct ExportData<'a> {
    pub name: Option<&'a str>,
    pub export_directory_table: ExportDirectoryTable,
    pub export_name_pointer_table: ExportNamePointerTable,
    pub export_ordinal_table: ExportOrdinalTable,
    pub export_address_table: ExportAddressTable,
}

Export data contains the dll name which other libraries can import symbols by (two-level namespace), as well as other important indexing data allowing symbol lookups

Fields

name: Option<&'a str>export_directory_table: ExportDirectoryTableexport_name_pointer_table: ExportNamePointerTableexport_ordinal_table: ExportOrdinalTableexport_address_table: ExportAddressTable

Methods

impl<'a> ExportData<'a>[src]

pub fn parse(
    bytes: &'a [u8],
    dd: DataDirectory,
    sections: &[SectionTable],
    file_alignment: u32
) -> Result<ExportData<'a>>
[src]

Trait Implementations

impl<'a> Default for ExportData<'a>[src]

impl<'a> Debug for ExportData<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for ExportData<'a>

impl<'a> Sync for ExportData<'a>

impl<'a> Send for ExportData<'a>

impl<'a> RefUnwindSafe for ExportData<'a>

impl<'a> UnwindSafe for ExportData<'a>

Blanket Implementations

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

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

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> 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]