object::read::macho

Type Alias MachOFatFile32

Source
pub type MachOFatFile32<'data> = MachOFatFile<'data, FatArch32>;
Expand description

A 32-bit Mach-O universal binary.

This is a file that starts with macho::FatHeader, and corresponds to crate::FileKind::MachOFat32.

Aliased Type§

struct MachOFatFile32<'data> {
    header: &'data FatHeader,
    arches: &'data [FatArch32],
}

Fields§

§header: &'data FatHeader§arches: &'data [FatArch32]

Implementations

Source§

impl<'data, Fat: FatArch> MachOFatFile<'data, Fat>

Source

pub fn parse<R: ReadRef<'data>>(data: R) -> Result<Self>

Attempt to parse the fat header and fat arches.

Source

pub fn header(&self) -> &'data FatHeader

Return the fat header

Source

pub fn arches(&self) -> &'data [Fat]

Return the array of fat arches.

Trait Implementations

Source§

impl<'data, Fat: Clone + FatArch> Clone for MachOFatFile<'data, Fat>

Source§

fn clone(&self) -> MachOFatFile<'data, Fat>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'data, Fat: Debug + FatArch> Debug for MachOFatFile<'data, Fat>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more