#[repr(C)]pub struct Pe_Section_t {
pub name: *const c_char,
pub virtual_address: u64,
pub size: u64,
pub offset: u64,
pub virtual_size: u32,
pub pointerto_relocation: u32,
pub pointerto_line_numbers: u32,
pub characteristics: u32,
pub content: *mut u8,
pub content_size: u64,
pub entropy: f64,
}Fields§
§name: *const c_char§virtual_address: u64§size: u64§offset: u64§virtual_size: u32§pointerto_relocation: u32§pointerto_line_numbers: u32§characteristics: u32§content: *mut u8§content_size: u64§entropy: f64Trait Implementations§
Source§impl Clone for Pe_Section_t
impl Clone for Pe_Section_t
Source§fn clone(&self) -> Pe_Section_t
fn clone(&self) -> Pe_Section_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_Section_t
impl Debug for Pe_Section_t
impl Copy for Pe_Section_t
Auto Trait Implementations§
impl Freeze for Pe_Section_t
impl RefUnwindSafe for Pe_Section_t
impl !Send for Pe_Section_t
impl !Sync for Pe_Section_t
impl Unpin for Pe_Section_t
impl UnwindSafe for Pe_Section_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