Struct pelite::image::IMAGE_SECTION_HEADER[][src]

#[repr(C)]
pub struct IMAGE_SECTION_HEADER { pub Name: [u8; 8], pub VirtualSize: u32, pub VirtualAddress: u32, pub SizeOfRawData: u32, pub PointerToRawData: u32, pub PointerToRelocations: u32, pub PointerToLinenumbers: u32, pub NumberOfRelocations: u16, pub NumberOfLinenumbers: u16, pub Characteristics: u32, }

Fields

Trait Implementations

impl Copy for IMAGE_SECTION_HEADER
[src]

impl Clone for IMAGE_SECTION_HEADER
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IMAGE_SECTION_HEADER
[src]

Formats the value using the given formatter. Read more

impl Pod for IMAGE_SECTION_HEADER
[src]

Auto Trait Implementations