#[repr(C)]pub struct FatArch {
pub cputype: u32,
pub cpusubtype: u32,
pub offset: u32,
pub size: u32,
pub align: u32,
}
Expand description
The Mach-o FatArch
always has its data bigendian
Fields§
§cputype: u32
What kind of CPU this binary is
cpusubtype: u32
§offset: u32
Where in the fat binary it starts
size: u32
How big the binary is
align: u32
Implementations§
Trait Implementations§
source§impl<'a> TryIntoCtx<Endian> for &'a FatArch
impl<'a> TryIntoCtx<Endian> for &'a FatArch
source§impl TryIntoCtx<Endian> for FatArch
impl TryIntoCtx<Endian> for FatArch
impl Copy for FatArch
Auto Trait Implementations§
impl RefUnwindSafe for FatArch
impl Send for FatArch
impl Sync for FatArch
impl Unpin for FatArch
impl UnwindSafe for FatArch
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