pub struct ElfComdat<'data, 'file, Elf, R = &'data [u8]>where
Elf: FileHeader,
R: ReadRef<'data>,{ /* private fields */ }
Expand description
A COMDAT section group in an ElfFile
.
Most functionality is provided by the ObjectComdat
trait implementation.
Implementations§
source§impl<'data, 'file, Elf, R> ElfComdat<'data, 'file, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Elf, R> ElfComdat<'data, 'file, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
sourcepub fn elf_file(&self) -> &'file ElfFile<'data, Elf, R>
pub fn elf_file(&self) -> &'file ElfFile<'data, Elf, R>
Get the ELF file containing this COMDAT section group.
sourcepub fn elf_section_header(&self) -> &'data Elf::SectionHeader
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,
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§impl<'data, 'file, Elf, R> ObjectComdat<'data> for ElfComdat<'data, 'file, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
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>
type SectionIterator = ElfComdatSectionIterator<'data, 'file, Elf, 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.
Auto Trait Implementations§
impl<'data, 'file, Elf, R> Freeze for ElfComdat<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> RefUnwindSafe for ElfComdat<'data, 'file, Elf, R>where
<Elf as FileHeader>::SectionHeader: RefUnwindSafe,
<Elf as FileHeader>::Endian: RefUnwindSafe,
R: RefUnwindSafe,
Elf: RefUnwindSafe,
<Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
impl<'data, 'file, Elf, R> Send for ElfComdat<'data, 'file, Elf, R>where
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Endian: Sync,
R: Sync,
Elf: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf, R> Sync for ElfComdat<'data, 'file, Elf, R>where
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Endian: Sync,
R: Sync,
Elf: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf, R> Unpin for ElfComdat<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> UnwindSafe for ElfComdat<'data, 'file, Elf, R>where
<Elf as FileHeader>::SectionHeader: RefUnwindSafe,
<Elf as FileHeader>::Endian: RefUnwindSafe,
R: RefUnwindSafe,
Elf: RefUnwindSafe,
<Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more