Struct lief::pe::delay_import::DelayImportEntry
pub struct DelayImportEntry<'a> { /* private fields */ }
Expand description
Structure that represents an entry (i.e. an import) in the delay import table.
It implements the generic::Symbol
trait that exposes generic::Symbol::name
and
generic::Symbol::value
.
The meaning of generic::Symbol::value
for this PE object is the address (as an RVA) in the
IAT where the resolution should take place.
Implementations§
§impl DelayImportEntry<'_>
impl DelayImportEntry<'_>
pub fn is_ordinal(&self) -> bool
pub fn is_ordinal(&self) -> bool
True
if it is an import by ordinal
pub fn hint_name_rva(&self) -> u64
pub fn hint_name_rva(&self) -> u64
Trait Implementations§
§impl Debug for DelayImportEntry<'_>
impl Debug for DelayImportEntry<'_>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DelayImportEntry<'a>
impl<'a> !Send for DelayImportEntry<'a>
impl<'a> !Sync for DelayImportEntry<'a>
impl<'a> Unpin for DelayImportEntry<'a>
impl<'a> UnwindSafe for DelayImportEntry<'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