object::read::macho

Type Alias MachOFatFile64

Source
pub type MachOFatFile64<'data> = MachOFatFile<'data, FatArch64>;
Expand description

A 64-bit Mach-O universal binary.

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

Aliased Type§

struct MachOFatFile64<'data> {
    header: &'data FatHeader,
    arches: &'data [FatArch64],
}

Fields§

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

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