#[repr(C)]pub struct IMAGE_DELAYLOAD_DESCRIPTOR {
pub Attributes: IMAGE_DELAYLOAD_DESCRIPTOR_Attributes,
pub DllNameRVA: DWORD,
pub ModuleHandleRVA: DWORD,
pub ImportAddressTableRVA: DWORD,
pub ImportNameTableRVA: DWORD,
pub BoundImportAddressTableRVA: DWORD,
pub UnloadInformationTableRVA: DWORD,
pub TimeDateStamp: DWORD,
}
Fields
Attributes: IMAGE_DELAYLOAD_DESCRIPTOR_Attributes
DllNameRVA: DWORD
ModuleHandleRVA: DWORD
ImportAddressTableRVA: DWORD
ImportNameTableRVA: DWORD
BoundImportAddressTableRVA: DWORD
UnloadInformationTableRVA: DWORD
TimeDateStamp: DWORD
Trait Implementations
sourceimpl Clone for IMAGE_DELAYLOAD_DESCRIPTOR
impl Clone for IMAGE_DELAYLOAD_DESCRIPTOR
sourcefn clone(&self) -> IMAGE_DELAYLOAD_DESCRIPTOR
fn clone(&self) -> IMAGE_DELAYLOAD_DESCRIPTOR
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for IMAGE_DELAYLOAD_DESCRIPTOR
Auto Trait Implementations
impl RefUnwindSafe for IMAGE_DELAYLOAD_DESCRIPTOR
impl Send for IMAGE_DELAYLOAD_DESCRIPTOR
impl Sync for IMAGE_DELAYLOAD_DESCRIPTOR
impl Unpin for IMAGE_DELAYLOAD_DESCRIPTOR
impl UnwindSafe for IMAGE_DELAYLOAD_DESCRIPTOR
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more