pub enum SyntheticImportLookupTableEntry<'a> {
OrdinalNumber(u16),
HintNameTableRVA((u32, HintNameTableEntry<'a>)),
}
Variants§
OrdinalNumber(u16)
HintNameTableRVA((u32, HintNameTableEntry<'a>))
Implementations§
Source§impl<'a> SyntheticImportLookupTableEntry<'a>
impl<'a> SyntheticImportLookupTableEntry<'a>
pub fn parse<T: Bitfield<'a>>( bytes: &'a [u8], offset: usize, sections: &[SectionTable], file_alignment: u32, ) -> Result<ImportLookupTable<'a>>
pub fn parse_with_opts<T: Bitfield<'a>>( bytes: &'a [u8], offset: usize, sections: &[SectionTable], file_alignment: u32, opts: &ParseOptions, ) -> Result<ImportLookupTable<'a>>
Trait Implementations§
Source§impl<'a> Clone for SyntheticImportLookupTableEntry<'a>
impl<'a> Clone for SyntheticImportLookupTableEntry<'a>
Source§fn clone(&self) -> SyntheticImportLookupTableEntry<'a>
fn clone(&self) -> SyntheticImportLookupTableEntry<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for SyntheticImportLookupTableEntry<'a>
impl<'a> RefUnwindSafe for SyntheticImportLookupTableEntry<'a>
impl<'a> Send for SyntheticImportLookupTableEntry<'a>
impl<'a> Sync for SyntheticImportLookupTableEntry<'a>
impl<'a> Unpin for SyntheticImportLookupTableEntry<'a>
impl<'a> UnwindSafe for SyntheticImportLookupTableEntry<'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