Expand description
Vectors contain owned fixed-size canonical arrays of elements.
Structs§
- Vector
- A vector contains fixed-size owned data in canonical form.
- Vector
Ref - A
VectorRefprovides a small wrapper to allow accessing aViewwith the same lifetime as the borrowed vector, rather than the lifetime of theRef. - Vector
RefMut - A
VectorRefMutprovides a small wrapper to allow accessing aViewMutwith the same lifetime as the borrowed vector, rather than the lifetime of theRefMut.