#[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_ENTRY§InMemoryOrderLinks: LIST_ENTRY§u1: LDR_DATA_TABLE_ENTRY_u1§DllBase: PVOID§EntryPoint: PLDR_INIT_ROUTINE§SizeOfImage: ULONG§FullDllName: UNICODE_STRING§BaseDllName: UNICODE_STRING§u2: LDR_DATA_TABLE_ENTRY_u2§ObsoleteLoadCount: USHORT§TlsIndex: USHORT§HashLinks: LIST_ENTRY§TimeDateStamp: ULONG§EntryPointActivationContext: *mut ACTIVATION_CONTEXT§Lock: PVOID§DdagNode: PLDR_DDAG_NODE§NodeModuleLink: LIST_ENTRY§LoadContext: *mut LDRP_LOAD_CONTEXT§ParentDllBase: PVOID§SwitchBackContext: PVOID§BaseAddressIndexNode: RTL_BALANCED_NODE§MappingInfoIndexNode: RTL_BALANCED_NODE§OriginalBase: ULONG_PTR§LoadTime: LARGE_INTEGER§BaseNameHashValue: ULONG§LoadReason: LDR_DLL_LOAD_REASON§ImplicitPathOptions: ULONG§ReferenceCount: ULONG§DependentLoadFlags: ULONG§SigningLevel: UCHAR

Trait Implementations§

source§

impl Clone for LDR_DATA_TABLE_ENTRY

source§

fn clone(&self) -> LDR_DATA_TABLE_ENTRY

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.