Struct gimli::read::PubNamesEntryIter
source · pub struct PubNamesEntryIter<R: Reader>(_);
Expand description
An iterator over the pubnames from a .debug_pubnames
section.
Can be used with
FallibleIterator
.
Implementations§
source§impl<R: Reader> PubNamesEntryIter<R>
impl<R: Reader> PubNamesEntryIter<R>
sourcepub fn next(&mut self) -> Result<Option<PubNamesEntry<R>>>
pub fn next(&mut self) -> Result<Option<PubNamesEntry<R>>>
Advance the iterator and return the next pubname.
Returns the newly parsed pubname as Ok(Some(pubname))
. Returns
Ok(None)
when iteration is complete and all pubnames have already been
parsed and yielded. If an error occurs while parsing the next pubname,
then this error is returned as Err(e)
, and all subsequent calls return
Ok(None)
.
Trait Implementations§
Auto Trait Implementations§
impl<R> RefUnwindSafe for PubNamesEntryIter<R>where R: RefUnwindSafe, <R as Reader>::Offset: RefUnwindSafe,
impl<R> Send for PubNamesEntryIter<R>where R: Send, <R as Reader>::Offset: Send,
impl<R> Sync for PubNamesEntryIter<R>where R: Sync, <R as Reader>::Offset: Sync,
impl<R> Unpin for PubNamesEntryIter<R>where R: Unpin, <R as Reader>::Offset: Unpin,
impl<R> UnwindSafe for PubNamesEntryIter<R>where R: UnwindSafe, <R as Reader>::Offset: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more