Module vec

Module vec 

Source
Expand description

A fixed capacity Vec.

Structs§

Drain
A draining iterator for Vec.
IntoIter
An iterator that moves out of an Vec.
VecInner
Base struct for Vec and VecView, generic over the VecStorage.

Traits§

VecStorage
Trait defining how data for a container is stored.

Type Aliases§

OwnedVecStorage
Implementation of VecStorage that stores the data in an array [T; N] whose size is known at compile time.
Vec
A fixed capacity Vec.
VecView
A Vec with dynamic capacity
ViewVecStorage
Implementation of VecStorage that stores the data in an unsized [T].