Type Alias object::read::coff::file::CoffBigFile

source ·
pub type CoffBigFile<'data, R = &'data [u8]> = CoffFile<'data, R, AnonObjectHeaderBigobj>;
Expand description

A COFF bigobj object file with 32-bit section numbers.

This is a file that starts with pe::AnonObjectHeaderBigobj, and corresponds to crate::FileKind::CoffBig.

Most functionality is provided by the Object trait implementation.

Aliased Type§

struct CoffBigFile<'data, R = &'data [u8]> {
    pub(super) header: &'data AnonObjectHeaderBigobj,
    pub(super) common: CoffCommon<'data, R, AnonObjectHeaderBigobj>,
    pub(super) data: R,
}

Fields§

§header: &'data AnonObjectHeaderBigobj§common: CoffCommon<'data, R, AnonObjectHeaderBigobj>§data: R