[][src]Struct rsprocmaps::Map

pub struct Map {
    pub address_range: AddressRange,
    pub permissions: Permissions,
    pub offset: u64,
    pub device: Device,
    pub inode: u64,
    pub pathname: Pathname,
}

Represents a map, i.e. a region of program memory.

Fields

address_range: AddressRange

The map's address range.

permissions: Permissions

The map's permissions.

offset: u64

The offset of the map within its source.

device: Device

The device that the map's inode belongs on.

inode: u64

The map's inode (or 0 if inapplicable).

pathname: Pathname

The map's pathname field.

Trait Implementations

impl Debug for Map[src]

impl Default for Map[src]

impl<'de> Deserialize<'de> for Map[src]

impl PartialEq<Map> for Map[src]

impl Serialize for Map[src]

impl StructuralPartialEq for Map[src]

Auto Trait Implementations

impl RefUnwindSafe for Map

impl Send for Map

impl Sync for Map

impl Unpin for Map

impl UnwindSafe for Map

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.