Struct gimli::read::PubTypesEntryIter
source · [−]pub struct PubTypesEntryIter<R: Reader>(_);
Expand description
An iterator over the pubtypes from a .debug_pubtypes
section.
Can be used with
FallibleIterator
.
Implementations
sourceimpl<R: Reader> PubTypesEntryIter<R>
impl<R: Reader> PubTypesEntryIter<R>
sourcepub fn next(&mut self) -> Result<Option<PubTypesEntry<R>>>
pub fn next(&mut self) -> Result<Option<PubTypesEntry<R>>>
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
sourceimpl<R: Clone + Reader> Clone for PubTypesEntryIter<R>
impl<R: Clone + Reader> Clone for PubTypesEntryIter<R>
sourcefn clone(&self) -> PubTypesEntryIter<R>
fn clone(&self) -> PubTypesEntryIter<R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<R> RefUnwindSafe for PubTypesEntryIter<R> where
R: RefUnwindSafe,
<R as Reader>::Offset: RefUnwindSafe,
impl<R> Send for PubTypesEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Sync for PubTypesEntryIter<R> where
R: Sync,
<R as Reader>::Offset: Sync,
impl<R> Unpin for PubTypesEntryIter<R> where
R: Unpin,
<R as Reader>::Offset: Unpin,
impl<R> UnwindSafe for PubTypesEntryIter<R> where
R: UnwindSafe,
<R as Reader>::Offset: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more