Struct ntapi::ntrtl::RTL_HEAP_INFORMATION
source · [−]#[repr(C)]pub struct RTL_HEAP_INFORMATION {Show 13 fields
pub BaseAddress: PVOID,
pub Flags: ULONG,
pub EntryOverhead: USHORT,
pub CreatorBackTraceIndex: USHORT,
pub BytesAllocated: SIZE_T,
pub BytesCommitted: SIZE_T,
pub NumberOfTags: ULONG,
pub NumberOfEntries: ULONG,
pub NumberOfPseudoTags: ULONG,
pub PseudoTagGranularity: ULONG,
pub Reserved: [ULONG; 5],
pub Tags: PRTL_HEAP_TAG,
pub Entries: PRTL_HEAP_ENTRY,
}
Fields
BaseAddress: PVOID
Flags: ULONG
EntryOverhead: USHORT
CreatorBackTraceIndex: USHORT
BytesAllocated: SIZE_T
BytesCommitted: SIZE_T
NumberOfTags: ULONG
NumberOfEntries: ULONG
NumberOfPseudoTags: ULONG
PseudoTagGranularity: ULONG
Reserved: [ULONG; 5]
Tags: PRTL_HEAP_TAG
Entries: PRTL_HEAP_ENTRY
Trait Implementations
sourceimpl Clone for RTL_HEAP_INFORMATION
impl Clone for RTL_HEAP_INFORMATION
sourcefn clone(&self) -> RTL_HEAP_INFORMATION
fn clone(&self) -> RTL_HEAP_INFORMATION
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 RTL_HEAP_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for RTL_HEAP_INFORMATION
impl !Send for RTL_HEAP_INFORMATION
impl !Sync for RTL_HEAP_INFORMATION
impl Unpin for RTL_HEAP_INFORMATION
impl UnwindSafe for RTL_HEAP_INFORMATION
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