#[repr(C)]pub struct ImageSectionHeader {
pub name: [u8; 8],
pub virtual_size: u32,
pub virtual_address: u32,
pub size_of_raw_data: u32,
pub pointer_to_raw_data: u32,
pub pointer_to_relocations: u32,
pub pointer_to_linenumbers: u32,
pub number_of_relocations: u16,
pub number_of_linenumbers: u16,
pub characteristics: u32,
}
Fields§
§name: [u8; 8]
§virtual_size: u32
§virtual_address: u32
§size_of_raw_data: u32
§pointer_to_raw_data: u32
§pointer_to_relocations: u32
§pointer_to_linenumbers: u32
§number_of_relocations: u16
§number_of_linenumbers: u16
§characteristics: u32
Implementations§
Source§impl ImageSectionHeader
impl ImageSectionHeader
pub fn name(&self) -> Result<String, PeSignError>
Trait Implementations§
Source§impl Clone for ImageSectionHeader
impl Clone for ImageSectionHeader
Source§fn clone(&self) -> ImageSectionHeader
fn clone(&self) -> ImageSectionHeader
Returns a duplicate 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 ImageSectionHeader
impl Debug for ImageSectionHeader
Source§impl PartialEq for ImageSectionHeader
impl PartialEq for ImageSectionHeader
impl Castable for ImageSectionHeader
impl Copy for ImageSectionHeader
impl Eq for ImageSectionHeader
impl StructuralPartialEq for ImageSectionHeader
Auto Trait Implementations§
impl Freeze for ImageSectionHeader
impl RefUnwindSafe for ImageSectionHeader
impl Send for ImageSectionHeader
impl Sync for ImageSectionHeader
impl Unpin for ImageSectionHeader
impl UnwindSafe for ImageSectionHeader
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