Trait VectorIterator

Source
pub trait VectorIterator<'lifetime, E>
where E: 'lifetime, Self: Iterator<Item = E> + ExactSizeIterator<Item = E> + DoubleEndedIterator,
{ }
Expand description

Trait that encapsulates an vector elements iterator with specific characteristics and implemetning CloneDyn.

Implementors§

Source§

impl<'lifetime, E, T> VectorIterator<'lifetime, E> for T
where E: 'lifetime, Self: Iterator<Item = E> + ExactSizeIterator<Item = E> + DoubleEndedIterator,