#[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§
Source§impl Clone for RTL_HEAP_PARAMETERS
impl Clone for RTL_HEAP_PARAMETERS
Source§fn clone(&self) -> RTL_HEAP_PARAMETERS
fn clone(&self) -> RTL_HEAP_PARAMETERS
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RTL_HEAP_PARAMETERS
Auto Trait Implementations§
impl Freeze for RTL_HEAP_PARAMETERS
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§
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