Struct goblin::pe::Coff[][src]

pub struct Coff<'a> {
    pub header: CoffHeader,
    pub sections: Vec<SectionTable>,
    pub symbols: SymbolTable<'a>,
    pub strings: Strtab<'a>,
}
Expand description

An analyzed COFF object

Fields

header: CoffHeader

The COFF header

sections: Vec<SectionTable>

A list of the sections in this COFF binary

symbols: SymbolTable<'a>

The COFF symbol table.

strings: Strtab<'a>

The string table.

Implementations

Reads a COFF object from the underlying bytes

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.