Struct gimli::read::RngListIter[][src]

pub struct RngListIter<R: Reader> { /* fields omitted */ }

An iterator over an address range list.

This iterator internally handles processing of base addresses and different entry types. Thus, it only returns range entries that are valid and already adjusted for the base address.

Implementations

impl<R: Reader> RngListIter<R>[src]

pub fn next(&mut self) -> Result<Option<Range>>[src]

Advance the iterator to the next range.

Trait Implementations

impl<R: Debug + Reader> Debug for RngListIter<R> where
    R::Offset: Debug
[src]

Auto Trait Implementations

impl<R> Send for RngListIter<R> where
    R: Send,
    <R as Reader>::Offset: Send

impl<R> Sync for RngListIter<R> where
    R: Sync,
    <R as Reader>::Offset: Sync

impl<R> Unpin for RngListIter<R> where
    R: Unpin,
    <R as Reader>::Offset: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.