Struct gimli::read::CallFrameInstructionIter
source · [−]pub struct CallFrameInstructionIter<'a, R: Reader> { /* private fields */ }
Expand description
A lazy iterator parsing call frame instructions.
Can be used with
FallibleIterator
.
Implementations
sourceimpl<'a, R: Reader> CallFrameInstructionIter<'a, R>
impl<'a, R: Reader> CallFrameInstructionIter<'a, R>
sourcepub fn next(&mut self) -> Result<Option<CallFrameInstruction<R>>>
pub fn next(&mut self) -> Result<Option<CallFrameInstruction<R>>>
Parse the next call frame instruction.
Trait Implementations
sourceimpl<'a, R: Clone + Reader> Clone for CallFrameInstructionIter<'a, R>
impl<'a, R: Clone + Reader> Clone for CallFrameInstructionIter<'a, R>
sourcefn clone(&self) -> CallFrameInstructionIter<'a, R>
fn clone(&self) -> CallFrameInstructionIter<'a, 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<'a, R> RefUnwindSafe for CallFrameInstructionIter<'a, R> where
R: RefUnwindSafe,
impl<'a, R> Send for CallFrameInstructionIter<'a, R> where
R: Send + Sync,
impl<'a, R> Sync for CallFrameInstructionIter<'a, R> where
R: Sync,
impl<'a, R> Unpin for CallFrameInstructionIter<'a, R> where
R: Unpin,
impl<'a, R> UnwindSafe for CallFrameInstructionIter<'a, R> where
R: UnwindSafe + RefUnwindSafe,
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