pub trait IteratorReset {
    fn reset(&mut self);
}
Expand description

A trait that add reset function to an existing Iterator. It mean that the next or next_into_cell call will start returning the first element again

Required methods

Reset an iterator. It make an iterator start from the beginning again.

Implementors