pub struct ElfComdat<'data, 'file, Elf, R = &'data [u8]> where
Elf: FileHeader,
R: ReadRef<'data>, { /* private fields */ }
Expand description
A COMDAT section group of an ElfFile
.
Trait Implementations
sourceimpl<'data, 'file, Elf: Debug, R: Debug> Debug for ElfComdat<'data, 'file, Elf, R> where
Elf: FileHeader,
R: ReadRef<'data>,
Elf::SectionHeader: Debug,
Elf::Endian: Debug,
impl<'data, 'file, Elf: Debug, R: Debug> Debug for ElfComdat<'data, 'file, Elf, R> where
Elf: FileHeader,
R: ReadRef<'data>,
Elf::SectionHeader: Debug,
Elf::Endian: Debug,
sourceimpl<'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>,
type SectionIterator = ElfComdatSectionIterator<'data, 'file, Elf, R>
type SectionIterator = ElfComdatSectionIterator<'data, 'file, Elf, R>
An iterator over the sections in the object file.
sourcefn kind(&self) -> ComdatKind
fn kind(&self) -> ComdatKind
Returns the COMDAT selection kind.
sourcefn symbol(&self) -> SymbolIndex
fn symbol(&self) -> SymbolIndex
Returns the index of the symbol used for the name of COMDAT section group.
sourcefn sections(&self) -> Self::SectionIterator
fn sections(&self) -> Self::SectionIterator
Get the sections in this section group.
Auto Trait Implementations
impl<'data, 'file, Elf, R> RefUnwindSafe for ElfComdat<'data, 'file, Elf, R> where
Elf: RefUnwindSafe,
R: RefUnwindSafe,
<Elf as FileHeader>::Endian: RefUnwindSafe,
<Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
<Elf as FileHeader>::SectionHeader: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
impl<'data, 'file, Elf, R> Send for ElfComdat<'data, 'file, Elf, R> where
Elf: Sync,
R: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf, R> Sync for ElfComdat<'data, 'file, Elf, R> where
Elf: Sync,
R: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf, R> Unpin for ElfComdat<'data, 'file, Elf, R> where
'data: 'file,
impl<'data, 'file, Elf, R> UnwindSafe for ElfComdat<'data, 'file, Elf, R> where
Elf: RefUnwindSafe,
R: RefUnwindSafe,
<Elf as FileHeader>::Endian: RefUnwindSafe,
<Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
<Elf as FileHeader>::SectionHeader: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more