[][src]Struct vm_info::mapped_region::MemoryRegion

pub struct MemoryRegion {
    pub start_address: usize,
    pub end_address: usize,
    pub permissions: Permissions,
    pub offset: usize,
    pub dev_major: u32,
    pub dev_minor: u32,
    pub inode: Option<u64>,
    pub pathname: Option<String>,
}

Metadata for a mapped virtual memory region. See the proc(5) manpage.

Fields

start_address: usize

Start of the address in the process's address space.

end_address: usizepermissions: Permissionsoffset: usize

Offset into the mapped file

dev_major: u32

Device major number

dev_minor: u32

Device minor number

inode: Option<u64>

inode, if available

pathname: Option<String>

Filename, or pseudo-path (e.g. [stack]), or None for anonymous mappings

Trait Implementations

impl Clone for MemoryRegion[src]

impl Debug for MemoryRegion[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.