[][src]Struct goblin::pe::optional_header::WindowsFields32

#[repr(C)]
pub struct WindowsFields32 {
    pub image_base: u32,
    pub section_alignment: u32,
    pub file_alignment: u32,
    pub major_operating_system_version: u16,
    pub minor_operating_system_version: u16,
    pub major_image_version: u16,
    pub minor_image_version: u16,
    pub major_subsystem_version: u16,
    pub minor_subsystem_version: u16,
    pub win32_version_value: u32,
    pub size_of_image: u32,
    pub size_of_headers: u32,
    pub check_sum: u32,
    pub subsystem: u16,
    pub dll_characteristics: u16,
    pub size_of_stack_reserve: u32,
    pub size_of_stack_commit: u32,
    pub size_of_heap_reserve: u32,
    pub size_of_heap_commit: u32,
    pub loader_flags: u32,
    pub number_of_rva_and_sizes: u32,
}

Windows specific fields

Fields

image_base: u32section_alignment: u32file_alignment: u32major_operating_system_version: u16minor_operating_system_version: u16major_image_version: u16minor_image_version: u16major_subsystem_version: u16minor_subsystem_version: u16win32_version_value: u32size_of_image: u32size_of_headers: u32check_sum: u32subsystem: u16dll_characteristics: u16size_of_stack_reserve: u32size_of_stack_commit: u32size_of_heap_reserve: u32size_of_heap_commit: u32loader_flags: u32number_of_rva_and_sizes: u32

Trait Implementations

impl PartialEq<WindowsFields32> for WindowsFields32[src]

impl Copy for WindowsFields32[src]

impl Default for WindowsFields32[src]

impl From<WindowsFields32> for WindowsFields[src]

impl Clone for WindowsFields32[src]

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

Performs copy-assignment from source. Read more

impl Debug for WindowsFields32[src]

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

impl SizeWith<Endian> for WindowsFields32[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]