Struct ntapi::ntrtl::RTL_HEAP_PARAMETERS
source · [−]#[repr(C)]pub struct RTL_HEAP_PARAMETERS {
pub Length: ULONG,
pub SegmentReserve: SIZE_T,
pub SegmentCommit: SIZE_T,
pub DeCommitFreeBlockThreshold: SIZE_T,
pub DeCommitTotalFreeThreshold: SIZE_T,
pub MaximumAllocationSize: SIZE_T,
pub VirtualMemoryThreshold: SIZE_T,
pub InitialCommit: SIZE_T,
pub InitialReserve: SIZE_T,
pub CommitRoutine: PRTL_HEAP_COMMIT_ROUTINE,
pub Reserved: [SIZE_T; 2],
}
Fields
Length: ULONG
SegmentReserve: SIZE_T
SegmentCommit: SIZE_T
DeCommitFreeBlockThreshold: SIZE_T
DeCommitTotalFreeThreshold: SIZE_T
MaximumAllocationSize: SIZE_T
VirtualMemoryThreshold: SIZE_T
InitialCommit: SIZE_T
InitialReserve: SIZE_T
CommitRoutine: PRTL_HEAP_COMMIT_ROUTINE
Reserved: [SIZE_T; 2]
Trait Implementations
sourceimpl Clone for RTL_HEAP_PARAMETERS
impl Clone for RTL_HEAP_PARAMETERS
sourcefn clone(&self) -> RTL_HEAP_PARAMETERS
fn clone(&self) -> RTL_HEAP_PARAMETERS
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_PARAMETERS
Auto Trait Implementations
impl RefUnwindSafe for RTL_HEAP_PARAMETERS
impl Send for RTL_HEAP_PARAMETERS
impl Sync for RTL_HEAP_PARAMETERS
impl Unpin for RTL_HEAP_PARAMETERS
impl UnwindSafe for RTL_HEAP_PARAMETERS
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