Struct object::pe::ImageDosHeader
source · [−]#[repr(C)]pub struct ImageDosHeader {Show 19 fields
pub e_magic: U16<LE>,
pub e_cblp: U16<LE>,
pub e_cp: U16<LE>,
pub e_crlc: U16<LE>,
pub e_cparhdr: U16<LE>,
pub e_minalloc: U16<LE>,
pub e_maxalloc: U16<LE>,
pub e_ss: U16<LE>,
pub e_sp: U16<LE>,
pub e_csum: U16<LE>,
pub e_ip: U16<LE>,
pub e_cs: U16<LE>,
pub e_lfarlc: U16<LE>,
pub e_ovno: U16<LE>,
pub e_res: [U16<LE>; 4],
pub e_oemid: U16<LE>,
pub e_oeminfo: U16<LE>,
pub e_res2: [U16<LE>; 10],
pub e_lfanew: U32<LE>,
}
Expand description
DOS .EXE header
Fields
e_magic: U16<LE>
Magic number
e_cblp: U16<LE>
Bytes on last page of file
e_cp: U16<LE>
Pages in file
e_crlc: U16<LE>
Relocations
e_cparhdr: U16<LE>
Size of header in paragraphs
e_minalloc: U16<LE>
Minimum extra paragraphs needed
e_maxalloc: U16<LE>
Maximum extra paragraphs needed
e_ss: U16<LE>
Initial (relative) SS value
e_sp: U16<LE>
Initial SP value
e_csum: U16<LE>
Checksum
e_ip: U16<LE>
Initial IP value
e_cs: U16<LE>
Initial (relative) CS value
e_lfarlc: U16<LE>
File address of relocation table
e_ovno: U16<LE>
Overlay number
e_res: [U16<LE>; 4]
Reserved words
e_oemid: U16<LE>
OEM identifier (for e_oeminfo)
e_oeminfo: U16<LE>
OEM information; e_oemid specific
e_res2: [U16<LE>; 10]
Reserved words
e_lfanew: U32<LE>
File address of new exe header
Implementations
sourceimpl ImageDosHeader
impl ImageDosHeader
Trait Implementations
sourceimpl Clone for ImageDosHeader
impl Clone for ImageDosHeader
sourcefn clone(&self) -> ImageDosHeader
fn clone(&self) -> ImageDosHeader
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ImageDosHeader
impl Debug for ImageDosHeader
impl Copy for ImageDosHeader
impl Pod for ImageDosHeader
Auto Trait Implementations
impl RefUnwindSafe for ImageDosHeader
impl Send for ImageDosHeader
impl Sync for ImageDosHeader
impl Unpin for ImageDosHeader
impl UnwindSafe for ImageDosHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more