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: ImportDirectoryEntry
§name: &'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
Implementations§
Source§impl<'a> SyntheticImportDirectoryEntry<'a>
impl<'a> SyntheticImportDirectoryEntry<'a>
pub fn parse<T: Bitfield<'a>>( bytes: &'a [u8], import_directory_entry: ImportDirectoryEntry, sections: &[SectionTable], file_alignment: u32, ) -> Result<SyntheticImportDirectoryEntry<'a>>
pub fn parse_with_opts<T: Bitfield<'a>>( bytes: &'a [u8], import_directory_entry: ImportDirectoryEntry, sections: &[SectionTable], file_alignment: u32, opts: &ParseOptions, ) -> Result<SyntheticImportDirectoryEntry<'a>>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SyntheticImportDirectoryEntry<'a>
impl<'a> RefUnwindSafe for SyntheticImportDirectoryEntry<'a>
impl<'a> Send for SyntheticImportDirectoryEntry<'a>
impl<'a> Sync for SyntheticImportDirectoryEntry<'a>
impl<'a> Unpin for SyntheticImportDirectoryEntry<'a>
impl<'a> UnwindSafe for SyntheticImportDirectoryEntry<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more