pub struct MinFileHeader {
pub magic: String,
pub machine: MachineType,
pub sections: u16,
pub timestamp: DateTime<Utc>,
pub sym_ptr: u32,
pub symbols: u32,
pub optional_header_size: u16,
pub charactristics: Flags,
}
Fields§
§magic: String
§machine: MachineType
§sections: u16
§timestamp: DateTime<Utc>
§sym_ptr: u32
§symbols: u32
§optional_header_size: u16
§charactristics: Flags
Trait Implementations§
Source§impl Debug for MinFileHeader
impl Debug for MinFileHeader
Source§impl From<&FileHeader> for MinFileHeader
impl From<&FileHeader> for MinFileHeader
Source§fn from(value: &FileHeader) -> Self
fn from(value: &FileHeader) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MinFileHeader
impl RefUnwindSafe for MinFileHeader
impl Send for MinFileHeader
impl Sync for MinFileHeader
impl Unpin for MinFileHeader
impl UnwindSafe for MinFileHeader
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