[][src]Struct ptrace_do_rs::parse_maps

#[repr(C)]pub struct parse_maps {
    pub start_address: c_ulong,
    pub end_address: c_ulong,
    pub perms: c_uint,
    pub offset: c_ulong,
    pub dev_major: c_uint,
    pub dev_minor: c_uint,
    pub inode: c_ulong,
    pub pathname: [c_char; 4096],
    pub next: *mut parse_maps,
    pub previous: *mut parse_maps,
}

Fields

start_address: c_ulongend_address: c_ulongperms: c_uintoffset: c_ulongdev_major: c_uintdev_minor: c_uintinode: c_ulongpathname: [c_char; 4096]next: *mut parse_mapsprevious: *mut parse_maps

Trait Implementations

impl Clone for parse_maps[src]

impl Copy for parse_maps[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.