pub struct prctl_mm_map {Show 14 fields
pub start_code: uint64_t,
pub end_code: uint64_t,
pub start_data: uint64_t,
pub end_data: uint64_t,
pub start_brk: uint64_t,
pub brk: uint64_t,
pub start_stack: uint64_t,
pub arg_start: uint64_t,
pub arg_end: uint64_t,
pub env_start: uint64_t,
pub env_end: uint64_t,
pub auxv: *mut uint64_t,
pub auxv_size: uint32_t,
pub exe_fd: uint32_t,
}
Fields§
§start_code: uint64_t
§end_code: uint64_t
§start_data: uint64_t
§end_data: uint64_t
§start_brk: uint64_t
§brk: uint64_t
§start_stack: uint64_t
§arg_start: uint64_t
§arg_end: uint64_t
§env_start: uint64_t
§env_end: uint64_t
§auxv: *mut uint64_t
§auxv_size: uint32_t
§exe_fd: uint32_t
Trait Implementations§
Source§impl Debug for prctl_mm_map
impl Debug for prctl_mm_map
Source§impl Hash for prctl_mm_map
impl Hash for prctl_mm_map
Source§impl Ord for prctl_mm_map
impl Ord for prctl_mm_map
Source§fn cmp(&self, other: &prctl_mm_map) -> Ordering
fn cmp(&self, other: &prctl_mm_map) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for prctl_mm_map
impl PartialEq for prctl_mm_map
Source§impl PartialOrd for prctl_mm_map
impl PartialOrd for prctl_mm_map
impl Eq for prctl_mm_map
impl StructuralPartialEq for prctl_mm_map
Auto Trait Implementations§
impl Freeze for prctl_mm_map
impl RefUnwindSafe for prctl_mm_map
impl !Send for prctl_mm_map
impl !Sync for prctl_mm_map
impl Unpin for prctl_mm_map
impl UnwindSafe for prctl_mm_map
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more