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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,