#[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: u32What kind of CPU this binary is
cpusubtype: u32§offset: u32Where in the fat binary it starts
size: u32How big the binary is
align: u32Implementations§
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 Freeze for FatArch
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