object::read::xcoff::comdat

Type Alias XcoffComdat32

Source
pub type XcoffComdat32<'data, 'file, R = &'data [u8]> = XcoffComdat<'data, 'file, FileHeader32, R>;
Expand description

A COMDAT section group in a XcoffFile32.

Aliased Type§

struct XcoffComdat32<'data, 'file, R = &'data [u8]> {
    file: &'file XcoffFile<'data, FileHeader32, R>,
}

Fields§

§file: &'file XcoffFile<'data, FileHeader32, R>

Trait Implementations

Source§

impl<'data, 'file, Xcoff, R> Debug for XcoffComdat<'data, 'file, Xcoff, R>
where Xcoff: FileHeader + Debug, R: ReadRef<'data> + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'data, 'file, Xcoff, R> ObjectComdat<'data> for XcoffComdat<'data, 'file, Xcoff, R>
where Xcoff: FileHeader, R: ReadRef<'data>,

Source§

type SectionIterator = XcoffComdatSectionIterator<'data, 'file, Xcoff, R>

An iterator for the sections in the section group.
Source§

fn kind(&self) -> ComdatKind

Returns the COMDAT selection kind.
Source§

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]>

Returns the name of the COMDAT section group.
Source§

fn name(&self) -> Result<&'data str>

Returns the name of the COMDAT section group. Read more
Source§

fn sections(&self) -> Self::SectionIterator

Get the sections in this section group.
Source§

impl<'data, 'file, Xcoff, R> Sealed for XcoffComdat<'data, 'file, Xcoff, R>
where Xcoff: FileHeader, R: ReadRef<'data>,