Struct gimli::read::PubTypesEntryIter [−][src]
pub struct PubTypesEntryIter<R: Reader>(_);
Expand description
An iterator over the pubtypes from a .debug_pubtypes
section.
Can be used with
FallibleIterator
.
Implementations
Advance the iterator and return the next pubtype.
Returns the newly parsed pubtype as Ok(Some(pubtype))
. Returns
Ok(None)
when iteration is complete and all pubtypes have already been
parsed and yielded. If an error occurs while parsing the next pubtype,
then this error is returned as Err(e)
, and all subsequent calls return
Ok(None)
.
Trait Implementations
Auto Trait Implementations
impl<R> RefUnwindSafe for PubTypesEntryIter<R> where
R: RefUnwindSafe,
<R as Reader>::Offset: RefUnwindSafe,
impl<R> UnwindSafe for PubTypesEntryIter<R> where
R: UnwindSafe,
<R as Reader>::Offset: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more