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