#[repr(C)]pub struct LdrDataTableEntry<P: Pod> {
pub in_load_order_links: ListEntry<P>,
pub in_memory_order_links: ListEntry<P>,
pub in_initialization_order_links: ListEntry<P>,
pub dll_base: P,
pub entry_point: P,
pub size_of_image: u32,
pub full_dll_name: UnicodeString<P>,
pub base_dll_name: UnicodeString<P>,
}Fields§
§in_load_order_links: ListEntry<P>§in_memory_order_links: ListEntry<P>§in_initialization_order_links: ListEntry<P>§dll_base: P§entry_point: P§size_of_image: u32§full_dll_name: UnicodeString<P>§base_dll_name: UnicodeString<P>Trait Implementations§
Source§impl<P: Default + Pod> Default for LdrDataTableEntry<P>
impl<P: Default + Pod> Default for LdrDataTableEntry<P>
Source§fn default() -> LdrDataTableEntry<P>
fn default() -> LdrDataTableEntry<P>
Returns the “default value” for a type. Read more
impl<P: Pod> Pod for LdrDataTableEntry<P>
Auto Trait Implementations§
impl<P> Freeze for LdrDataTableEntry<P>where
P: Freeze,
impl<P> RefUnwindSafe for LdrDataTableEntry<P>where
P: RefUnwindSafe,
impl<P> Send for LdrDataTableEntry<P>where
P: Send,
impl<P> Sync for LdrDataTableEntry<P>where
P: Sync,
impl<P> Unpin for LdrDataTableEntry<P>where
P: Unpin,
impl<P> UnwindSafe for LdrDataTableEntry<P>where
P: UnwindSafe,
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