#[repr(C)]
pub struct ImageSymbol { pub name: [u8; 8], pub value: U32Bytes<LE>, pub section_number: U16Bytes<LE>, pub typ: U16Bytes<LE>, pub storage_class: u8, pub number_of_aux_symbols: u8, }

Fields

name: [u8; 8]

If first 4 bytes are 0, then second 4 bytes are offset into string table.

value: U32Bytes<LE>section_number: U16Bytes<LE>typ: U16Bytes<LE>storage_class: u8number_of_aux_symbols: u8

Implementations

Parse a COFF symbol name.

strings must be the string table used for symbol names.

Return the symbol address.

This takes into account the image base and the section address.

Return true if the symbol is a definition of a function or data object.

Return true if the symbol has an auxiliary file name.

Return true if the symbol has an auxiliary function symbol.

Return true if the symbol has an auxiliary section symbol.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.