[][src]Struct procfs::MemoryMap

pub struct MemoryMap {
    pub address: (u64, u64),
    pub perms: String,
    pub offset: u64,
    pub dev: (i32, i32),
    pub inode: u64,
    pub pathname: MMapPath,
}

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: Stringoffset: 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 PartialEq<MemoryMap> for MemoryMap[src]

impl Debug for MemoryMap[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]