Type Alias object::read::pe::PeComdat64

source ·
pub type PeComdat64<'data, 'file, R = &'data [u8]> = PeComdat<'data, 'file, ImageNtHeaders64, R>;
Expand description

A COMDAT section group of a PeFile64.

Aliased Type§

struct PeComdat64<'data, 'file, R = &'data [u8]> { /* private fields */ }

Trait Implementations

source§

impl<'data, 'file, Pe, R> Debug for PeComdat<'data, 'file, Pe, R>
where Pe: ImageNtHeaders + Debug, R: ReadRef<'data> + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'data, 'file, Pe, R> ObjectComdat<'data> for PeComdat<'data, 'file, Pe, R>
where Pe: ImageNtHeaders, R: ReadRef<'data>,

§

type SectionIterator = PeComdatSectionIterator<'data, 'file, Pe, R>

An iterator over the sections in the object file.
source§

fn kind(&self) -> ComdatKind

Returns the COMDAT selection kind.
source§

fn symbol(&self) -> SymbolIndex

Returns the index of the symbol used for the name of COMDAT section group.
source§

fn name_bytes(&self) -> Result<&[u8]>

Returns the name of the COMDAT section group.
source§

fn name(&self) -> Result<&str>

Returns the name of the COMDAT section group. Read more
source§

fn sections(&self) -> Self::SectionIterator

Get the sections in this section group.