Trait libafl_bolts::AsIter

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

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

Create an Iterator from a reference

Required Associated Types§

source

type Item: 'it

The item type

source

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

The iterator type

Required Methods§

source

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

Create an iterator from &self

Implementors§