[][src]Struct goblin::pe::import::SyntheticImportDirectoryEntry

pub struct SyntheticImportDirectoryEntry<'a> {
    pub import_directory_entry: ImportDirectoryEntry,
    pub name: &'a str,
    pub import_lookup_table: Option<ImportLookupTable<'a>>,
    pub import_address_table: ImportAddressTable,
}

Fields

import_directory_entry: ImportDirectoryEntryname: &'a str

Computed

import_lookup_table: Option<ImportLookupTable<'a>>

The import lookup table is a vector of either ordinals, or RVAs + import names

import_address_table: ImportAddressTable

Computed

Methods

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

pub fn parse<T: Bitfield<'a>>(
    bytes: &'a [u8],
    import_directory_entry: ImportDirectoryEntry,
    sections: &[SectionTable],
    file_alignment: u32
) -> Result<SyntheticImportDirectoryEntry<'a>>
[src]

Trait Implementations

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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