Struct gimli::read::ArangeEntryIter
source · pub struct ArangeEntryIter<R: Reader> {
input: R,
encoding: Encoding,
}
Expand description
An iterator over the aranges from a .debug_aranges
section.
Can be used with
FallibleIterator
.
Fields§
§input: R
§encoding: Encoding
Implementations§
source§impl<R: Reader> ArangeEntryIter<R>
impl<R: Reader> ArangeEntryIter<R>
sourcepub fn next(&mut self) -> Result<Option<ArangeEntry>>
pub fn next(&mut self) -> Result<Option<ArangeEntry>>
Advance the iterator and return the next arange.
Returns the newly parsed arange as Ok(Some(arange))
. Returns Ok(None)
when iteration is complete and all aranges have already been parsed and
yielded. If an error occurs while parsing the next arange, then this error
is returned as Err(e)
, and all subsequent calls return Ok(None)
.
sourcepub fn next_raw(&mut self) -> Result<Option<ArangeEntry>>
pub fn next_raw(&mut self) -> Result<Option<ArangeEntry>>
Advance the iterator and return the next arange without validating it.
The returned entry will have range.end
set to 0.
This will return tombstone entries as well.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for ArangeEntryIter<R>where
R: Freeze,
impl<R> RefUnwindSafe for ArangeEntryIter<R>where
R: RefUnwindSafe,
impl<R> Send for ArangeEntryIter<R>where
R: Send,
impl<R> Sync for ArangeEntryIter<R>where
R: Sync,
impl<R> Unpin for ArangeEntryIter<R>where
R: Unpin,
impl<R> UnwindSafe for ArangeEntryIter<R>where
R: 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