pub struct FileHeader {
pub machine: u16,
pub time_date_stamp: u32,
pub characteristics: u16,
}
Expand description
Shortened and native endian version of pe::ImageFileHeader
.
Fields§
§machine: u16
§time_date_stamp: u32
§characteristics: u16
Trait Implementations§
Source§impl Clone for FileHeader
impl Clone for FileHeader
Source§fn clone(&self) -> FileHeader
fn clone(&self) -> FileHeader
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FileHeader
impl Debug for FileHeader
Source§impl Default for FileHeader
impl Default for FileHeader
Source§fn default() -> FileHeader
fn default() -> FileHeader
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileHeader
impl RefUnwindSafe for FileHeader
impl Send for FileHeader
impl Sync for FileHeader
impl Unpin for FileHeader
impl UnwindSafe for FileHeader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more