#[repr(C)]
pub struct LDR_DATA_TABLE_ENTRY {
Show 30 fields pub InLoadOrderLinks: LIST_ENTRY, pub InMemoryOrderLinks: LIST_ENTRY, pub u1: LDR_DATA_TABLE_ENTRY_u1, pub DllBase: PVOID, pub EntryPoint: PLDR_INIT_ROUTINE, pub SizeOfImage: ULONG, pub FullDllName: UNICODE_STRING, pub BaseDllName: UNICODE_STRING, pub u2: LDR_DATA_TABLE_ENTRY_u2, pub ObsoleteLoadCount: USHORT, pub TlsIndex: USHORT, pub HashLinks: LIST_ENTRY, pub TimeDateStamp: ULONG, pub EntryPointActivationContext: *mut ACTIVATION_CONTEXT, pub Lock: PVOID, pub DdagNode: PLDR_DDAG_NODE, pub NodeModuleLink: LIST_ENTRY, pub LoadContext: *mut LDRP_LOAD_CONTEXT, pub ParentDllBase: PVOID, pub SwitchBackContext: PVOID, pub BaseAddressIndexNode: RTL_BALANCED_NODE, pub MappingInfoIndexNode: RTL_BALANCED_NODE, pub OriginalBase: ULONG_PTR, pub LoadTime: LARGE_INTEGER, pub BaseNameHashValue: ULONG, pub LoadReason: LDR_DLL_LOAD_REASON, pub ImplicitPathOptions: ULONG, pub ReferenceCount: ULONG, pub DependentLoadFlags: ULONG, pub SigningLevel: UCHAR,
}

Fields

InLoadOrderLinks: LIST_ENTRYInMemoryOrderLinks: LIST_ENTRYu1: LDR_DATA_TABLE_ENTRY_u1DllBase: PVOIDEntryPoint: PLDR_INIT_ROUTINESizeOfImage: ULONGFullDllName: UNICODE_STRINGBaseDllName: UNICODE_STRINGu2: LDR_DATA_TABLE_ENTRY_u2ObsoleteLoadCount: USHORTTlsIndex: USHORTHashLinks: LIST_ENTRYTimeDateStamp: ULONGEntryPointActivationContext: *mut ACTIVATION_CONTEXTLock: PVOIDDdagNode: PLDR_DDAG_NODENodeModuleLink: LIST_ENTRYLoadContext: *mut LDRP_LOAD_CONTEXTParentDllBase: PVOIDSwitchBackContext: PVOIDBaseAddressIndexNode: RTL_BALANCED_NODEMappingInfoIndexNode: RTL_BALANCED_NODEOriginalBase: ULONG_PTRLoadTime: LARGE_INTEGERBaseNameHashValue: ULONGLoadReason: LDR_DLL_LOAD_REASONImplicitPathOptions: ULONGReferenceCount: ULONGDependentLoadFlags: ULONGSigningLevel: UCHAR

Trait Implementations

source

impl Clone for LDR_DATA_TABLE_ENTRY

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

source

impl Copy for LDR_DATA_TABLE_ENTRY

Auto Trait Implementations

Blanket Implementations

source

impl<T> Any for T where
    T: 'static + ?Sized

Gets the TypeId of self. Read more

source

impl<T> Borrow<T> for T where
    T: ?Sized

Immutably borrows from an owned value. Read more

source

impl<T> BorrowMut<T> for T where
    T: ?Sized

Mutably borrows from an owned value. Read more

source

impl<T> From<T> for T

Returns the argument unchanged.

source

impl<T, U> Into<U> for T where
    U: From<T>, 

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source

impl<T> ToOwned for T where
    T: Clone

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

source

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 

The type returned in the event of a conversion error.

Performs the conversion.

source

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

The type returned in the event of a conversion error.

Performs the conversion.