pub type XcoffFile64<'data, R = &'data [u8]> = XcoffFile<'data, FileHeader64, R>;Expand description
A 64-bit XCOFF object file.
This is a file that starts with xcoff::FileHeader64, and corresponds
to crate::FileKind::Xcoff64.
Aliased Type§
pub struct XcoffFile64<'data, R = &'data [u8]> {
    pub(super) data: R,
    pub(super) header: &'data FileHeader64,
    pub(super) aux_header: Option<&'data AuxHeader64>,
    pub(super) sections: SectionTable<'data, FileHeader64>,
    pub(super) symbols: SymbolTable<'data, FileHeader64, R>,
}Fields§
§data: R§header: &'data FileHeader64§aux_header: Option<&'data AuxHeader64>§sections: SectionTable<'data, FileHeader64>§symbols: SymbolTable<'data, FileHeader64, R>