[][src]Struct winapi::um::winnt::IMAGE_DOS_HEADER

#[repr(C)]
pub struct IMAGE_DOS_HEADER {
    pub e_magic: WORD,
    pub e_cblp: WORD,
    pub e_cp: WORD,
    pub e_crlc: WORD,
    pub e_cparhdr: WORD,
    pub e_minalloc: WORD,
    pub e_maxalloc: WORD,
    pub e_ss: WORD,
    pub e_sp: WORD,
    pub e_csum: WORD,
    pub e_ip: WORD,
    pub e_cs: WORD,
    pub e_lfarlc: WORD,
    pub e_ovno: WORD,
    pub e_res: [WORD; 4],
    pub e_oemid: WORD,
    pub e_oeminfo: WORD,
    pub e_res2: [WORD; 10],
    pub e_lfanew: LONG,
}

Fields

e_magic: WORDe_cblp: WORDe_cp: WORDe_crlc: WORDe_cparhdr: WORDe_minalloc: WORDe_maxalloc: WORDe_ss: WORDe_sp: WORDe_csum: WORDe_ip: WORDe_cs: WORDe_lfarlc: WORDe_ovno: WORDe_res: [WORD; 4]e_oemid: WORDe_oeminfo: WORDe_res2: [WORD; 10]e_lfanew: LONG

Trait Implementations

impl Copy for IMAGE_DOS_HEADER[src]

impl Clone for IMAGE_DOS_HEADER[src]

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

Performs copy-assignment from source. Read more

impl Default for IMAGE_DOS_HEADER[src]

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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