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