Enum goblin::mach::Mach []

pub enum Mach<'a> {
    Fat(MultiArch<'a>),
    Binary(MachO<'a>),
}

Either a collection of multiple architectures, or a single mach-o binary

Variants

A "fat" multi-architecture binary container

A regular Mach-o binary

Methods

impl<'a> Mach<'a>

Parse from bytes either a multi-arch binary or a regular mach-o binary

Trait Implementations

impl<'a> Debug for Mach<'a>

Formats the value using the given formatter.