IterableStoredVec

Trait IterableStoredVec 

Source
pub trait IterableStoredVec<I, T>: IterableVec<I, T> + AnyStoredVec { }
Expand description

Trait combining stored and iterable vector capabilities.

Implementors§

Source§

impl<I, T, U> IterableStoredVec<I, T> for U
where U: 'static + IterableVec<I, T> + AnyStoredVec,