[][src]Struct goblin::pe::symbol::AuxSectionDefinition

#[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],
}

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

impl PartialEq<AuxSectionDefinition> for AuxSectionDefinition[src]

impl Copy for AuxSectionDefinition[src]

impl Default for AuxSectionDefinition[src]

impl Clone for AuxSectionDefinition[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AuxSectionDefinition[src]

impl FromCtx<Endian, [u8]> for AuxSectionDefinition[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for AuxSectionDefinition where
    AuxSectionDefinition: 'a, 
[src]

type Error = Error

type Size = usize

impl<'a> IntoCtx<Endian, [u8]> for &'a AuxSectionDefinition[src]

impl IntoCtx<Endian, [u8]> for AuxSectionDefinition[src]

impl<'a> TryIntoCtx<Endian, [u8]> for &'a AuxSectionDefinition[src]

type Error = Error

type Size = usize

impl TryIntoCtx<Endian, [u8]> for AuxSectionDefinition[src]

type Error = Error

type Size = usize

impl SizeWith<Endian> for AuxSectionDefinition[src]

type Units = usize

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]