Trait VectorIterator

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

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

Implementors§

Source§

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