Type Alias object::read::coff::CoffBigComdat
source · pub type CoffBigComdat<'data, 'file, R = &'data [u8]> = CoffComdat<'data, 'file, R, AnonObjectHeaderBigobj>;
Expand description
A COMDAT section group of a CoffBigFile
.
Aliased Type§
struct CoffBigComdat<'data, 'file, R = &'data [u8]> { /* private fields */ }
Trait Implementations
source§impl<'data, 'file, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffComdat<'data, 'file, R, Coff>where
Coff::ImageSymbol: Debug,
impl<'data, 'file, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffComdat<'data, 'file, R, Coff>where
Coff::ImageSymbol: Debug,
source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectComdat<'data> for CoffComdat<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectComdat<'data> for CoffComdat<'data, 'file, R, Coff>
§type SectionIterator = CoffComdatSectionIterator<'data, 'file, R, Coff>
type SectionIterator = CoffComdatSectionIterator<'data, 'file, R, Coff>
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) -> Self::SectionIterator
fn sections(&self) -> Self::SectionIterator
Get the sections in this section group.