Struct HEAPENTRY32
#[repr(C)]pub struct HEAPENTRY32 {
pub dwSize: usize,
pub hHandle: HANDLE,
pub dwAddress: usize,
pub dwBlockSize: usize,
pub dwFlags: HEAPENTRY32_FLAGS,
pub dwLockCount: u32,
pub dwResvd: u32,
pub th32ProcessID: u32,
pub th32HeapID: usize,
}
Fields§
§dwSize: usize
§hHandle: HANDLE
§dwAddress: usize
§dwBlockSize: usize
§dwFlags: HEAPENTRY32_FLAGS
§dwLockCount: u32
§dwResvd: u32
§th32ProcessID: u32
§th32HeapID: usize
Trait Implementations§
§impl Clone for HEAPENTRY32
impl Clone for HEAPENTRY32
§fn clone(&self) -> HEAPENTRY32
fn clone(&self) -> HEAPENTRY32
Returns a copy 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 HEAPENTRY32
Auto Trait Implementations§
impl Freeze for HEAPENTRY32
impl RefUnwindSafe for HEAPENTRY32
impl !Send for HEAPENTRY32
impl !Sync for HEAPENTRY32
impl Unpin for HEAPENTRY32
impl UnwindSafe for HEAPENTRY32
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