Struct procfs::process::MemoryMap [−][src]
Represents an entry in a /proc/<pid>/maps
file.
To construct this structure, see Process::maps().
Fields
address: (u64, u64)
The address space in the process that the mapping occupies.
perms: String
offset: u64
The offset into the file/whatever
dev: (i32, i32)
The device (major, minor)
inode: u64
The inode on that device
0 indicates that no inode is associated with the memory region, as would be the case with BSS (uninitialized data).
pathname: MMapPath
Trait Implementations
impl Clone for MemoryMap
[src][+]
impl Debug for MemoryMap
[src][+]
impl PartialEq<MemoryMap> for MemoryMap
[src][+]
impl StructuralPartialEq for MemoryMap
[src]
Auto Trait Implementations
impl RefUnwindSafe for MemoryMap
impl Send for MemoryMap
impl Sync for MemoryMap
impl Unpin for MemoryMap
impl UnwindSafe for MemoryMap
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,