pub struct MemoryStats {
pub virtual_size: AtomicU64,
pub resident_size: AtomicU64,
pub shared_size: AtomicU64,
}Expand description
Memory usage statistics
Fields§
§virtual_size: AtomicU64Virtual memory size (bytes)
resident_size: AtomicU64Resident set size (bytes)
Shared memory size (bytes)
Trait Implementations§
Source§impl Debug for MemoryStats
impl Debug for MemoryStats
Source§impl Default for MemoryStats
impl Default for MemoryStats
Source§fn default() -> MemoryStats
fn default() -> MemoryStats
Returns the “default value” for a type. Read more