Type Alias object::read::elf::ElfDynamicRelocationIterator32

source ·
pub type ElfDynamicRelocationIterator32<'data, 'file, Endian = Endianness, R = &'data [u8]> = ElfDynamicRelocationIterator<'data, 'file, FileHeader32<Endian>, R>;
Expand description

An iterator for the dynamic relocations in an ElfFile32.

Aliased Type§

struct ElfDynamicRelocationIterator32<'data, 'file, Endian = Endianness, R = &'data [u8]> {
    pub(super) section_index: SectionIndex,
    pub(super) file: &'file ElfFile<'data, FileHeader32<Endian>, R>,
    pub(super) relocations: Option<ElfRelaIterator<'data, FileHeader32<Endian>>>,
}

Fields§

§section_index: SectionIndex

The current relocation section index.

§file: &'file ElfFile<'data, FileHeader32<Endian>, R>§relocations: Option<ElfRelaIterator<'data, FileHeader32<Endian>>>