Struct gimli::read::cfi::CfiEntriesIter

source ·
pub struct CfiEntriesIter<'bases, Section, R>where
    R: Reader,
    Section: UnwindSection<R>,{
    section: Section,
    bases: &'bases BaseAddresses,
    input: R,
}
Expand description

An iterator over CIE and FDE entries in a .debug_frame or .eh_frame section.

Some pointers may be encoded relative to various base addresses. Use the BaseAddresses parameter to provide them. By default, none are provided. If a relative pointer is encountered for a base address that is unknown, an Err will be returned and iteration will abort.

Can be used with FallibleIterator.

use gimli::{BaseAddresses, EhFrame, EndianSlice, NativeEndian, UnwindSection};

let eh_frame = EhFrame::new(read_eh_frame_somehow(), NativeEndian);

// Provide base addresses for relative pointers.
let bases = BaseAddresses::default()
    .set_eh_frame_hdr(address_of_eh_frame_hdr_section_in_memory)
    .set_eh_frame(address_of_eh_frame_section_in_memory)
    .set_text(address_of_text_section_in_memory)
    .set_got(address_of_got_section_in_memory);

let mut entries = eh_frame.entries(&bases);

while let Some(entry) = entries.next()? {
    do_stuff_with(entry)
}

Fields§

§section: Section§bases: &'bases BaseAddresses§input: R

Implementations§

source§

impl<'bases, Section, R> CfiEntriesIter<'bases, Section, R>where R: Reader, Section: UnwindSection<R>,

source

pub fn next(&mut self) -> Result<Option<CieOrFde<'bases, Section, R>>>

Advance the iterator to the next entry.

Trait Implementations§

source§

impl<'bases, Section, R> Clone for CfiEntriesIter<'bases, Section, R>where R: Reader + Clone, Section: UnwindSection<R> + Clone,

source§

fn clone(&self) -> CfiEntriesIter<'bases, Section, R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'bases, Section, R> Debug for CfiEntriesIter<'bases, Section, R>where R: Reader + Debug, Section: UnwindSection<R> + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'bases, Section, R> RefUnwindSafe for CfiEntriesIter<'bases, Section, R>where R: RefUnwindSafe, Section: RefUnwindSafe,

§

impl<'bases, Section, R> Send for CfiEntriesIter<'bases, Section, R>where R: Send, Section: Send,

§

impl<'bases, Section, R> Sync for CfiEntriesIter<'bases, Section, R>where R: Sync, Section: Sync,

§

impl<'bases, Section, R> Unpin for CfiEntriesIter<'bases, Section, R>where R: Unpin, Section: Unpin,

§

impl<'bases, Section, R> UnwindSafe for CfiEntriesIter<'bases, Section, R>where R: UnwindSafe, Section: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.