#[repr(C)]pub struct IMAGE_SECTION_HEADER {
pub Name: [BYTE; 8],
pub Misc: IMAGE_SECTION_HEADER_Misc,
pub VirtualAddress: DWORD,
pub SizeOfRawData: DWORD,
pub PointerToRawData: DWORD,
pub PointerToRelocations: DWORD,
pub PointerToLinenumbers: DWORD,
pub NumberOfRelocations: WORD,
pub NumberOfLinenumbers: WORD,
pub Characteristics: DWORD,
}
Fields
Name: [BYTE; 8]
Misc: IMAGE_SECTION_HEADER_Misc
VirtualAddress: DWORD
SizeOfRawData: DWORD
PointerToRawData: DWORD
PointerToRelocations: DWORD
PointerToLinenumbers: DWORD
NumberOfRelocations: WORD
NumberOfLinenumbers: WORD
Characteristics: DWORD
Trait Implementations
sourceimpl Clone for IMAGE_SECTION_HEADER
impl Clone for IMAGE_SECTION_HEADER
sourcefn clone(&self) -> IMAGE_SECTION_HEADER
fn clone(&self) -> IMAGE_SECTION_HEADER
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for IMAGE_SECTION_HEADER
Auto Trait Implementations
impl RefUnwindSafe for IMAGE_SECTION_HEADER
impl Send for IMAGE_SECTION_HEADER
impl Sync for IMAGE_SECTION_HEADER
impl Unpin for IMAGE_SECTION_HEADER
impl UnwindSafe for IMAGE_SECTION_HEADER
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more