pub trait ImageNtHeaders: Debug + Pod {
    type ImageOptionalHeader: ImageOptionalHeader;
    type ImageThunkData: ImageThunkData;

    // Required methods
    fn is_type_64(&self) -> bool;
    fn is_valid_optional_magic(&self) -> bool;
    fn signature(&self) -> u32;
    fn file_header(&self) -> &ImageFileHeader;
    fn optional_header(&self) -> &Self::ImageOptionalHeader;

    // Provided methods
    fn parse<'data, R: ReadRef<'data>>(
        data: R,
        offset: &mut u64
    ) -> Result<(&'data Self, DataDirectories<'data>)> { ... }
    fn sections<'data, R: ReadRef<'data>>(
        &self,
        data: R,
        offset: u64
    ) -> Result<SectionTable<'data>> { ... }
    fn symbols<'data, R: ReadRef<'data>>(
        &self,
        data: R
    ) -> Result<SymbolTable<'data, R>> { ... }
}
Expand description

A trait for generic access to pe::ImageNtHeaders32 and pe::ImageNtHeaders64.

Required Associated Types§

Required Methods§

source

fn is_type_64(&self) -> bool

Return true if this type is a 64-bit header.

This is a property of the type, not a value in the header data.

source

fn is_valid_optional_magic(&self) -> bool

Return true if the magic field in the optional header is valid.

source

fn signature(&self) -> u32

Return the signature

source

fn file_header(&self) -> &ImageFileHeader

Return the file header.

source

fn optional_header(&self) -> &Self::ImageOptionalHeader

Return the optional header.

Provided Methods§

source

fn parse<'data, R: ReadRef<'data>>( data: R, offset: &mut u64 ) -> Result<(&'data Self, DataDirectories<'data>)>

Read the NT headers, including the data directories.

data must be for the entire file.

offset must be headers offset, which can be obtained from pe::ImageDosHeader::nt_headers_offset. It is updated to point after the optional header, which is where the section headers are located.

Also checks that the signature and magic fields in the headers are valid.

source

fn sections<'data, R: ReadRef<'data>>( &self, data: R, offset: u64 ) -> Result<SectionTable<'data>>

Read the section table.

data must be for the entire file. offset must be after the optional file header.

source

fn symbols<'data, R: ReadRef<'data>>( &self, data: R ) -> Result<SymbolTable<'data, R>>

Read the COFF symbol table and string table.

data must be the entire file data.

Object Safety§

This trait is not object safe.

Implementors§