Type Alias object::read::elf::ElfDynamicRelocationIterator64
source · pub type ElfDynamicRelocationIterator64<'data, 'file, Endian = Endianness, R = &'data [u8]> = ElfDynamicRelocationIterator<'data, 'file, FileHeader64<Endian>, R>;
Expand description
An iterator for the dynamic relocations in an ElfFile64
.
Aliased Type§
struct ElfDynamicRelocationIterator64<'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 relocation section index.
file: &'file ElfFile<'data, FileHeader64<Endian>, R>
§relocations: Option<ElfRelaIterator<'data, FileHeader64<Endian>>>