Struct gimli::read::ArangeEntryIter
source · [−]pub struct ArangeEntryIter<R: Reader> { /* private fields */ }
Expand description
An iterator over the aranges from a .debug_aranges
section.
Can be used with
FallibleIterator
.
Implementations
sourceimpl<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)
.
Trait Implementations
sourceimpl<R: Clone + Reader> Clone for ArangeEntryIter<R>
impl<R: Clone + Reader> Clone for ArangeEntryIter<R>
sourcefn clone(&self) -> ArangeEntryIter<R>
fn clone(&self) -> ArangeEntryIter<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 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more