#[repr(C)]pub struct Header {
pub magic: u32,
pub cputype: u32,
pub cpusubtype: u32,
pub filetype: u32,
pub ncmds: usize,
pub sizeofcmds: u32,
pub flags: u32,
pub reserved: u32,
}
Expand description
Generic sized header
Fields§
§magic: u32
§cputype: u32
§cpusubtype: u32
§filetype: u32
type of file
ncmds: usize
number of load commands
sizeofcmds: u32
the size of all the load commands
flags: u32
flags
reserved: u32
Implementations§
Trait Implementations§
source§impl<'a> TryFromCtx<'a, Ctx> for Header
impl<'a> TryFromCtx<'a, Ctx> for Header
source§impl TryIntoCtx<Ctx> for Header
impl TryIntoCtx<Ctx> for Header
impl Copy for Header
Auto Trait Implementations§
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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