pub type PeComdat32<'data, 'file, R = &'data [u8]> = PeComdat<'data, 'file, ImageNtHeaders32, R>;
Expand description
A COMDAT section group in a PeFile32
.
Aliased Type§
struct PeComdat32<'data, 'file, R = &'data [u8]> {
file: &'file PeFile<'data, ImageNtHeaders32, R>,
}
Fields§
§file: &'file PeFile<'data, ImageNtHeaders32, R>
Trait Implementations
Source§impl<'data, 'file, Pe, R> ObjectComdat<'data> for PeComdat<'data, 'file, Pe, R>where
Pe: ImageNtHeaders,
R: ReadRef<'data>,
impl<'data, 'file, Pe, R> ObjectComdat<'data> for PeComdat<'data, 'file, Pe, R>where
Pe: ImageNtHeaders,
R: ReadRef<'data>,
Source§type SectionIterator = PeComdatSectionIterator<'data, 'file, Pe, R>
type SectionIterator = PeComdatSectionIterator<'data, 'file, Pe, R>
An iterator for the sections in the section group.
Source§fn kind(&self) -> ComdatKind
fn kind(&self) -> ComdatKind
Returns the COMDAT selection kind.
Source§fn symbol(&self) -> SymbolIndex
fn symbol(&self) -> SymbolIndex
Returns the index of the symbol used for the name of COMDAT section group.
Source§fn name_bytes(&self) -> Result<&'data [u8]>
fn name_bytes(&self) -> Result<&'data [u8]>
Returns the name of the COMDAT section group.
Source§fn sections(&self) -> Self::SectionIterator
fn sections(&self) -> Self::SectionIterator
Get the sections in this section group.