Struct procfs::process::MemoryMapData
source · Expand description
Represents the information about a specific mapping as presented in /proc/
To construct this structure, see Process::smaps()
Fields§
§map: HashMap<String, u64>
Key-Value pairs that may represent statistics about memory usage, or other interesting things, such a “ProtectionKey”(if you’re on X86 and that kernel config option was specified).
Note that should a Key-Value pair represent a memory usage statistic, it will be in bytes.
Check your manpage for more information
vm_flags: Option<VmFlags>
Kernel flags associated with the virtual memory area
(since Linux 3.8)
Trait Implementations§
source§impl Debug for MemoryMapData
impl Debug for MemoryMapData
source§impl Default for MemoryMapData
impl Default for MemoryMapData
source§fn default() -> MemoryMapData
fn default() -> MemoryMapData
Returns the “default value” for a type. Read more