Struct object::pe::ImageDosHeader

source ·
#[repr(C)]
pub struct ImageDosHeader {
Show 19 fields pub e_magic: U16<LittleEndian>, pub e_cblp: U16<LittleEndian>, pub e_cp: U16<LittleEndian>, pub e_crlc: U16<LittleEndian>, pub e_cparhdr: U16<LittleEndian>, pub e_minalloc: U16<LittleEndian>, pub e_maxalloc: U16<LittleEndian>, pub e_ss: U16<LittleEndian>, pub e_sp: U16<LittleEndian>, pub e_csum: U16<LittleEndian>, pub e_ip: U16<LittleEndian>, pub e_cs: U16<LittleEndian>, pub e_lfarlc: U16<LittleEndian>, pub e_ovno: U16<LittleEndian>, pub e_res: [U16<LittleEndian>; 4], pub e_oemid: U16<LittleEndian>, pub e_oeminfo: U16<LittleEndian>, pub e_res2: [U16<LittleEndian>; 10], pub e_lfanew: U32<LittleEndian>,
}
Expand description

DOS .EXE header

Fields§

§e_magic: U16<LittleEndian>

Magic number

§e_cblp: U16<LittleEndian>

Bytes on last page of file

§e_cp: U16<LittleEndian>

Pages in file

§e_crlc: U16<LittleEndian>

Relocations

§e_cparhdr: U16<LittleEndian>

Size of header in paragraphs

§e_minalloc: U16<LittleEndian>

Minimum extra paragraphs needed

§e_maxalloc: U16<LittleEndian>

Maximum extra paragraphs needed

§e_ss: U16<LittleEndian>

Initial (relative) SS value

§e_sp: U16<LittleEndian>

Initial SP value

§e_csum: U16<LittleEndian>

Checksum

§e_ip: U16<LittleEndian>

Initial IP value

§e_cs: U16<LittleEndian>

Initial (relative) CS value

§e_lfarlc: U16<LittleEndian>

File address of relocation table

§e_ovno: U16<LittleEndian>

Overlay number

§e_res: [U16<LittleEndian>; 4]

Reserved words

§e_oemid: U16<LittleEndian>

OEM identifier (for e_oeminfo)

§e_oeminfo: U16<LittleEndian>

OEM information; e_oemid specific

§e_res2: [U16<LittleEndian>; 10]

Reserved words

§e_lfanew: U32<LittleEndian>

File address of new exe header

Implementations§

source§

impl ImageDosHeader

source

pub fn parse<'data, R: ReadRef<'data>>(data: R) -> Result<&'data Self>

Read the DOS header.

Also checks that the e_magic field in the header is valid.

source

pub fn nt_headers_offset(&self) -> u32

Return the file offset of the nt_headers.

Trait Implementations§

source§

impl Clone for ImageDosHeader

source§

fn clone(&self) -> ImageDosHeader

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for ImageDosHeader

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for ImageDosHeader

source§

impl Pod for ImageDosHeader

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.