[][src]Struct gimli::read::RawRngListIter

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

A raw iterator over an address range list.

This iterator does not perform any processing of the range entries, such as handling base addresses.

Implementations

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

pub fn next(&mut self) -> Result<Option<RawRngListEntry<R::Offset>>>[src]

Advance the iterator to the next range.

Trait Implementations

impl<R: Debug + Reader> Debug for RawRngListIter<R>[src]

impl<R: Reader> FallibleIterator for RawRngListIter<R>[src]

type Item = RawRngListEntry<R::Offset>

The type being iterated over.

type Error = Error

The error type.

Auto Trait Implementations

impl<R> RefUnwindSafe for RawRngListIter<R> where
    R: RefUnwindSafe

impl<R> Send for RawRngListIter<R> where
    R: Send

impl<R> Sync for RawRngListIter<R> where
    R: Sync

impl<R> Unpin for RawRngListIter<R> where
    R: Unpin

impl<R> UnwindSafe for RawRngListIter<R> where
    R: UnwindSafe

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<I> IntoFallibleIterator for I where
    I: FallibleIterator
[src]

type Item = <I as FallibleIterator>::Item

The elements of the iterator.

type Error = <I as FallibleIterator>::Error

The error value of the iterator.

type IntoFallibleIter = I

The iterator.

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.