Struct mach_sys::dyld_images::segment_command_64
source · #[repr(C)]pub struct segment_command_64 {
pub cmd: c_uint,
pub cmdsize: c_uint,
pub segname: [c_char; 16],
pub vmaddr: c_ulong,
pub vmsize: c_ulong,
pub fileoff: c_ulong,
pub filesize: c_ulong,
pub maxprot: c_int,
pub initprot: c_int,
pub nsects: c_uint,
pub flags: c_uint,
}Fields§
§cmd: c_uint§cmdsize: c_uint§segname: [c_char; 16]§vmaddr: c_ulong§vmsize: c_ulong§fileoff: c_ulong§filesize: c_ulong§maxprot: c_int§initprot: c_int§nsects: c_uint§flags: c_uintTrait Implementations§
source§impl Clone for segment_command_64
impl Clone for segment_command_64
source§fn clone(&self) -> segment_command_64
fn clone(&self) -> segment_command_64
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for segment_command_64
impl Debug for segment_command_64
source§impl Default for segment_command_64
impl Default for segment_command_64
source§fn default() -> segment_command_64
fn default() -> segment_command_64
Returns the “default value” for a type. Read more
source§impl Hash for segment_command_64
impl Hash for segment_command_64
source§impl Ord for segment_command_64
impl Ord for segment_command_64
source§fn cmp(&self, other: &segment_command_64) -> Ordering
fn cmp(&self, other: &segment_command_64) -> 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 segment_command_64
impl PartialEq for segment_command_64
source§fn eq(&self, other: &segment_command_64) -> bool
fn eq(&self, other: &segment_command_64) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for segment_command_64
impl PartialOrd for segment_command_64
source§fn partial_cmp(&self, other: &segment_command_64) -> Option<Ordering>
fn partial_cmp(&self, other: &segment_command_64) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for segment_command_64
impl Eq for segment_command_64
impl StructuralPartialEq for segment_command_64
Auto Trait Implementations§
impl RefUnwindSafe for segment_command_64
impl Send for segment_command_64
impl Sync for segment_command_64
impl Unpin for segment_command_64
impl UnwindSafe for segment_command_64
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