[][src]Struct object::pe::ImageSectionHeader

#[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]

pub fn pe_data<'data>(&self, data: Bytes<'data>) -> Result<Bytes<'data>, ()>[src]

Return the data for a PE section.

Trait Implementations

impl Clone for ImageSectionHeader[src]

impl Copy for ImageSectionHeader[src]

impl Debug for ImageSectionHeader[src]

impl Pod for ImageSectionHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.