Struct mach_object::FatHeader[][src]

pub struct FatHeader {
    pub magic: u32,
    pub archs: Vec<FatArch>,
}

The structures of the file format for "fat" architecture specific file (wrapper design). At the begining of the file there is one FatHeader structure followed by a number of FatArch structures.

Fields

fat magic number identifier

number of structs that follow

Trait Implementations

impl Display for FatHeader
[src]

Formats the value using the given formatter. Read more

impl Debug for FatHeader
[src]

Formats the value using the given formatter. Read more

impl Default for FatHeader
[src]

Returns the "default value" for a type. Read more

impl Clone for FatHeader
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for FatHeader

impl Sync for FatHeader