pub trait IteratorReset {
// Required method
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
pub trait IteratorReset {
// Required method
fn reset(&mut self);
}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