#[repr(C)]pub struct MemoryStats {
pub name: *const c_char,
pub usedSize: usize,
pub committedSize: usize,
pub reservedSize: usize,
pub overhead: u32,
pub pad24: u32,
pub freeSize: usize,
}
Expand description
Represents memory statistics.
Fields§
§name: *const c_char
§usedSize: usize
§committedSize: usize
§reservedSize: usize
§overhead: u32
§pad24: u32
§freeSize: usize
Trait Implementations§
Source§impl Debug for MemoryStats
impl Debug for MemoryStats
Auto Trait Implementations§
impl Freeze for MemoryStats
impl RefUnwindSafe for MemoryStats
impl !Send for MemoryStats
impl !Sync for MemoryStats
impl Unpin for MemoryStats
impl UnwindSafe for MemoryStats
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