Trait libafl_bolts::AsIterMut

source ·
pub trait AsIterMut<'it> {
    type Item: 'it;
    type IntoIter: Iterator<Item = &'it mut Self::Item>;

    // Required method
    fn as_iter_mut(&'it mut self) -> Self::IntoIter;
}
Expand description

Create an Iterator from a mutable reference

Required Associated Types§

source

type Item: 'it

The item type

source

type IntoIter: Iterator<Item = &'it mut Self::Item>

The iterator type

Required Methods§

source

fn as_iter_mut(&'it mut self) -> Self::IntoIter

Create an iterator from &mut self

Implementors§