This list lets you add stuff to it, even if you're holding a reference to some of its elements.
When should you use it?
Vec
reallocations are significantWhen shouldn't you use it?
Vec
reallocations don't matter very much (normally the case!)What are some features?
push(&self, item: T)
method (you'd expect push(&mut self, item: T)
)