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 · 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