Struct winapi::winnt::IMAGE_SECTION_HEADER [] [src]

pub struct IMAGE_SECTION_HEADER {
    pub Name: [BYTE; 8],
    pub PhysicalAddressOrVirtualSize: DWORD,
    pub VirtualAddress: DWORD,
    pub SizeOfRawData: DWORD,
    pub PointerToRawData: DWORD,
    pub PointerToRelocations: DWORD,
    pub PointerToLinenumbers: DWORD,
    pub NumberOfRelocations: WORD,
    pub NumberOfLinenumbers: WORD,
    pub Characteristics: DWORD,
}

Fields

Name: [BYTE; 8] PhysicalAddressOrVirtualSize: DWORD VirtualAddress: DWORD SizeOfRawData: DWORD PointerToRawData: DWORD PointerToRelocations: DWORD PointerToLinenumbers: DWORD NumberOfRelocations: WORD NumberOfLinenumbers: WORD Characteristics: DWORD

Trait Implementations

impl Debug for IMAGE_SECTION_HEADER
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for IMAGE_SECTION_HEADER
[src]

impl Clone for IMAGE_SECTION_HEADER
[src]

fn clone(&self) -> IMAGE_SECTION_HEADER

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more