pub struct Comdat<'data, 'file, R: ReadRef<'data> = &'data [u8]>where
'data: 'file,{ /* private fields */ }
Expand description
A COMDAT section group of a File
.
Trait Implementations§
source§impl<'data, 'file, R: ReadRef<'data>> ObjectComdat<'data> for Comdat<'data, 'file, R>
impl<'data, 'file, R: ReadRef<'data>> ObjectComdat<'data> for Comdat<'data, 'file, R>
§type SectionIterator = ComdatSectionIterator<'data, 'file, R>
type SectionIterator = ComdatSectionIterator<'data, 'file, R>
An iterator over the sections in the object file.
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<&[u8]>
fn name_bytes(&self) -> Result<&[u8]>
Returns the name of the COMDAT section group.
source§fn sections(&self) -> ComdatSectionIterator<'data, 'file, R> ⓘ
fn sections(&self) -> ComdatSectionIterator<'data, 'file, R> ⓘ
Get the sections in this section group.