Struct object::pe::ImageSectionHeader [−][src]
#[repr(C)]pub struct ImageSectionHeader { pub name: [u8; 8], pub virtual_size: U32<LE>, pub virtual_address: U32<LE>, pub size_of_raw_data: U32<LE>, pub pointer_to_raw_data: U32<LE>, pub pointer_to_relocations: U32<LE>, pub pointer_to_linenumbers: U32<LE>, pub number_of_relocations: U16<LE>, pub number_of_linenumbers: U16<LE>, pub characteristics: U32<LE>, }
Fields
name: [u8; 8]
virtual_size: U32<LE>
virtual_address: U32<LE>
size_of_raw_data: U32<LE>
pointer_to_raw_data: U32<LE>
pointer_to_relocations: U32<LE>
pointer_to_linenumbers: U32<LE>
number_of_relocations: U16<LE>
number_of_linenumbers: U16<LE>
characteristics: U32<LE>
Implementations
impl ImageSectionHeader
[src]
impl ImageSectionHeader
[src]Trait Implementations
impl Clone for ImageSectionHeader
[src]
impl Clone for ImageSectionHeader
[src]fn clone(&self) -> ImageSectionHeader
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for ImageSectionHeader
[src]
impl Pod for ImageSectionHeader
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
The resulting type after obtaining ownership.