[][src]Enum mach_object::OFile

pub enum OFile {
    MachFile {
        header: MachHeader,
        commands: Vec<MachCommand>,
    },
    FatFile {
        magic: u32,
        files: Vec<(FatArch, OFile)>,
    },
    ArFile {
        files: Vec<(ArHeader, OFile)>,
    },
    SymDef {
        ranlibs: Vec<RanLib>,
    },
}

The abstract file block, including mach-o file, fat/universal file, archive file and symdef block

Variants

MachFile

Fields of MachFile

header: MachHeadercommands: Vec<MachCommand>
FatFile

Fields of FatFile

magic: u32files: Vec<(FatArch, OFile)>
ArFile

Fields of ArFile

files: Vec<(ArHeader, OFile)>
SymDef

Fields of SymDef

ranlibs: Vec<RanLib>

Methods

impl OFile[src]

pub fn parse<T: AsRef<[u8]>>(buf: &mut Cursor<T>) -> Result<OFile, Error>[src]

Parse a file base on its magic number

Trait Implementations

impl<'a> SymbolReader<'a> for OFile[src]

type Iter = SymbolIter<'a>

impl Clone for OFile[src]

impl Debug for OFile[src]

Auto Trait Implementations

impl !Send for OFile

impl !Sync for OFile

impl Unpin for OFile

impl UnwindSafe for OFile

impl !RefUnwindSafe for OFile

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]