Type Alias object::read::macho::relocation::MachORelocationIterator32
source · pub type MachORelocationIterator32<'data, 'file, Endian = Endianness, R = &'data [u8]> = MachORelocationIterator<'data, 'file, MachHeader32<Endian>, R>;
Expand description
An iterator for the relocations in a MachOSection32
.
Aliased Type§
struct MachORelocationIterator32<'data, 'file, Endian = Endianness, R = &'data [u8]> {
pub(super) file: &'file MachOFile<'data, MachHeader32<Endian>, R>,
pub(super) relocations: Iter<'data, Relocation<<MachHeader32<Endian> as MachHeader>::Endian>>,
}
Fields§
§file: &'file MachOFile<'data, MachHeader32<Endian>, R>
§relocations: Iter<'data, Relocation<<MachHeader32<Endian> as MachHeader>::Endian>>