Struct gimli::read::EhHdrTableIter
source · pub struct EhHdrTableIter<'a, 'bases, R: Reader> { /* private fields */ }
Expand description
An iterator for .eh_frame_hdr
section’s binary search table.
Each table entry consists of a tuple containing an initial_location
and address
.
The initial location
represents the first address that the targeted FDE
is able to decode. The address
is the address of the FDE in the .eh_frame
section.
The address
can be converted with EhHdrTable::pointer_to_offset
and EhFrame::fde_from_offset
to an FDE.