pub struct Comdat<'data, 'file, R: ReadRef<'data> = &'data [u8]> { /* private fields */ }
Expand description
A COMDAT section group in a File
.
Most functionality is provided by the ObjectComdat
trait implementation.
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>
Source§type SectionIterator = ComdatSectionIterator<'data, 'file, R>
type SectionIterator = ComdatSectionIterator<'data, 'file, 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) -> ComdatSectionIterator<'data, 'file, R> ⓘ
fn sections(&self) -> ComdatSectionIterator<'data, 'file, R> ⓘ
Get the sections in this section group.