#[repr(C)]
pub struct AuxSectionDefinition { pub length: u32, pub number_of_relocations: u16, pub number_of_line_numbers: u16, pub checksum: u32, pub number: u16, pub selection: u8, pub unused: [u8; 3], }
Expand description

Auxiliary symbol record for section definitions.

Fields

length: u32

The size of section data; the same as size_of_raw_data in the section header.

number_of_relocations: u16

The number of relocation entries for the section.

number_of_line_numbers: u16

The number of line-number entries for the section.

checksum: u32

The checksum for communal data.

It is applicable if the IMAGE_SCN_LNK_COMDAT flag is set in the section header.

number: u16

One-based index into the section table for the associated section.

This is used when the selection field is IMAGE_COMDAT_SELECT_ASSOCIATIVE.

selection: u8

The COMDAT selection number.

This is applicable if the section is a COMDAT section.

unused: [u8; 3]

Unused padding.

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

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.