Type Alias object::read::xcoff::XcoffFile32

source ·
pub type XcoffFile32<'data, R = &'data [u8]> = XcoffFile<'data, FileHeader32, R>;
Expand description

A 32-bit XCOFF object file.

This is a file that starts with xcoff::FileHeader32, and corresponds to crate::FileKind::Xcoff32.

Aliased Type§

struct XcoffFile32<'data, R = &'data [u8]> {
    pub(super) data: R,
    pub(super) header: &'data FileHeader32,
    pub(super) aux_header: Option<&'data AuxHeader32>,
    pub(super) sections: SectionTable<'data, FileHeader32>,
    pub(super) symbols: SymbolTable<'data, FileHeader32, R>,
}

Fields§

§data: R§header: &'data FileHeader32§aux_header: Option<&'data AuxHeader32>§sections: SectionTable<'data, FileHeader32>§symbols: SymbolTable<'data, FileHeader32, R>