Struct goblin::mach::load_command::SegmentCommand64
source · #[repr(C)]pub struct SegmentCommand64 {
pub cmd: u32,
pub cmdsize: u32,
pub segname: [u8; 16],
pub vmaddr: u64,
pub vmsize: u64,
pub fileoff: u64,
pub filesize: u64,
pub maxprot: u32,
pub initprot: u32,
pub nsects: u32,
pub flags: u32,
}
Fields§
§cmd: u32
§cmdsize: u32
§segname: [u8; 16]
§vmaddr: u64
§vmsize: u64
§fileoff: u64
§filesize: u64
§maxprot: u32
§initprot: u32
§nsects: u32
§flags: u32
Implementations§
Trait Implementations§
source§impl Clone for SegmentCommand64
impl Clone for SegmentCommand64
source§fn clone(&self) -> SegmentCommand64
fn clone(&self) -> SegmentCommand64
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 SegmentCommand64
impl Debug for SegmentCommand64
source§impl<'a> From<Segment<'a>> for SegmentCommand64
impl<'a> From<Segment<'a>> for SegmentCommand64
source§impl<'a> IntoCtx<Endian> for &'a SegmentCommand64
impl<'a> IntoCtx<Endian> for &'a SegmentCommand64
source§impl IntoCtx<Endian> for SegmentCommand64
impl IntoCtx<Endian> for SegmentCommand64
source§impl<'a> TryFromCtx<'a, Endian> for SegmentCommand64where
SegmentCommand64: 'a,
impl<'a> TryFromCtx<'a, Endian> for SegmentCommand64where SegmentCommand64: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a SegmentCommand64
impl<'a> TryIntoCtx<Endian> for &'a SegmentCommand64
source§impl TryIntoCtx<Endian> for SegmentCommand64
impl TryIntoCtx<Endian> for SegmentCommand64
impl Copy for SegmentCommand64
Auto Trait Implementations§
impl RefUnwindSafe for SegmentCommand64
impl Send for SegmentCommand64
impl Sync for SegmentCommand64
impl Unpin for SegmentCommand64
impl UnwindSafe for SegmentCommand64
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