Type Alias object::read::elf::relocation::ElfSectionRelocationIterator64
source · pub type ElfSectionRelocationIterator64<'data, 'file, Endian = Endianness, R = &'data [u8]> = ElfSectionRelocationIterator<'data, 'file, FileHeader64<Endian>, R>;
Expand description
An iterator for the relocations for an ElfSection64
.
Aliased Type§
struct ElfSectionRelocationIterator64<'data, 'file, Endian = Endianness, R = &'data [u8]> {
pub(super) section_index: SectionIndex,
pub(super) file: &'file ElfFile<'data, FileHeader64<Endian>, R>,
pub(super) relocations: Option<ElfRelaIterator<'data, FileHeader64<Endian>>>,
}
Fields§
§section_index: SectionIndex
The current pointer in the chain of relocation sections.
file: &'file ElfFile<'data, FileHeader64<Endian>, R>
§relocations: Option<ElfRelaIterator<'data, FileHeader64<Endian>>>