Type Alias object::read::xcoff::XcoffComdat64
source · pub type XcoffComdat64<'data, 'file, R = &'data [u8]> = XcoffComdat<'data, 'file, FileHeader64, R>;
Expand description
A COMDAT section group in a XcoffFile64
.
Aliased Type§
struct XcoffComdat64<'data, 'file, R = &'data [u8]> { /* private fields */ }
Trait Implementations
source§impl<'data, 'file, Xcoff, R> Debug for XcoffComdat<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffComdat<'data, 'file, Xcoff, R>
source§impl<'data, 'file, Xcoff, R> ObjectComdat<'data> for XcoffComdat<'data, 'file, Xcoff, R>where
Xcoff: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Xcoff, R> ObjectComdat<'data> for XcoffComdat<'data, 'file, Xcoff, R>where
Xcoff: FileHeader,
R: ReadRef<'data>,
§type SectionIterator = XcoffComdatSectionIterator<'data, 'file, Xcoff, R>
type SectionIterator = XcoffComdatSectionIterator<'data, 'file, Xcoff, 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.