#[repr(C)]pub struct Pe_Header_t {
pub signature: [u8; 4],
pub machine: LIEF_PE_MACHINE_TYPES,
pub numberof_sections: u16,
pub time_date_stamp: u32,
pub pointerto_symbol_table: u32,
pub numberof_symbols: u32,
pub sizeof_optional_header: u16,
pub characteristics: u16,
}Fields§
§signature: [u8; 4]§machine: LIEF_PE_MACHINE_TYPES§numberof_sections: u16§time_date_stamp: u32§pointerto_symbol_table: u32§numberof_symbols: u32§sizeof_optional_header: u16§characteristics: u16Trait Implementations§
Source§impl Clone for Pe_Header_t
impl Clone for Pe_Header_t
Source§fn clone(&self) -> Pe_Header_t
fn clone(&self) -> Pe_Header_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Pe_Header_t
impl Debug for Pe_Header_t
impl Copy for Pe_Header_t
Auto Trait Implementations§
impl Freeze for Pe_Header_t
impl RefUnwindSafe for Pe_Header_t
impl Send for Pe_Header_t
impl Sync for Pe_Header_t
impl Unpin for Pe_Header_t
impl UnwindSafe for Pe_Header_t
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