#[repr(C)]pub struct segment_command_64 {
pub cmd: uint32_t,
pub cmdsize: uint32_t,
pub segname: [c_char; 16],
pub vmaddr: uint64_t,
pub vmsize: uint64_t,
pub fileoff: uint64_t,
pub filesize: uint64_t,
pub maxprot: vm_prot_t,
pub initprot: vm_prot_t,
pub nsects: uint32_t,
pub flags: uint32_t,
}
Fields§
§cmd: uint32_t
§cmdsize: uint32_t
§segname: [c_char; 16]
§vmaddr: uint64_t
§vmsize: uint64_t
§fileoff: uint64_t
§filesize: uint64_t
§maxprot: vm_prot_t
§initprot: vm_prot_t
§nsects: uint32_t
§flags: uint32_t
Trait 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
impl Copy for segment_command_64
Auto Trait Implementations§
impl Freeze for segment_command_64
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