object::read::elf::comdat

Type Alias ElfComdat32

Source
pub type ElfComdat32<'data, 'file, Endian = Endianness, R = &'data [u8]> = ElfComdat<'data, 'file, FileHeader32<Endian>, R>;
Expand description

A COMDAT section group in an ElfFile32.

Aliased Type§

struct ElfComdat32<'data, 'file, Endian = Endianness, R = &'data [u8]> {
    file: &'file ElfFile<'data, FileHeader32<Endian>, R>,
    section: &'data <FileHeader32<Endian> as FileHeader>::SectionHeader,
    sections: &'data [U32Bytes<<FileHeader32<Endian> as FileHeader>::Endian>],
}

Fields§

§file: &'file ElfFile<'data, FileHeader32<Endian>, R>§section: &'data <FileHeader32<Endian> as FileHeader>::SectionHeader§sections: &'data [U32Bytes<<FileHeader32<Endian> as FileHeader>::Endian>]

Implementations

Source§

impl<'data, 'file, Elf, R> ElfComdat<'data, 'file, Elf, R>
where Elf: FileHeader, R: ReadRef<'data>,

Source

fn parse( file: &'file ElfFile<'data, Elf, R>, section: &'data Elf::SectionHeader, ) -> Option<ElfComdat<'data, 'file, Elf, R>>

Source

pub fn elf_file(&self) -> &'file ElfFile<'data, Elf, R>

Get the ELF file containing this COMDAT section group.

Source

pub fn elf_section_header(&self) -> &'data Elf::SectionHeader

Get the raw ELF section header for the COMDAT section group.

Trait Implementations

Source§

impl<'data, 'file, Elf, R> Debug for ElfComdat<'data, 'file, Elf, R>
where Elf: FileHeader + Debug, R: ReadRef<'data> + Debug, Elf::SectionHeader: Debug, Elf::Endian: Debug,

Source§

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

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

impl<'data, 'file, Elf, R> ObjectComdat<'data> for ElfComdat<'data, 'file, Elf, R>
where Elf: FileHeader, R: ReadRef<'data>,

Source§

type SectionIterator = ElfComdatSectionIterator<'data, 'file, Elf, 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, Elf, R> Sealed for ElfComdat<'data, 'file, Elf, R>
where Elf: FileHeader, R: ReadRef<'data>,