Struct 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
pub fn demangled_name(&self) -> String
pub fn demangled_name(&self) -> String
Demangled representation of the symbol or an empty string if it can’t be demangled
Trait Implementations§
§impl Debug for DelayImportEntry<'_>
 
impl Debug for DelayImportEntry<'_>
Auto Trait Implementations§
impl<'a> Freeze for DelayImportEntry<'a>
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