[][src]Struct procfs::MemoryMap

pub struct MemoryMap {
    pub address: (u64, u64),
    pub perms: String,
    pub offset: u64,
    pub dev: (i32, i32),
    pub inode: u32,
    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: u32

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 Debug for MemoryMap
[src]

Auto Trait Implementations

impl Send for MemoryMap

impl Sync for MemoryMap

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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