Module rustc_data_structures::small_vec[][src]

A vector type intended to be used for small vectors.

Space for up to N elements is provided on the stack. If more elements are collected, Vec is used to store the values on the heap.

The N above is determined by Array's implementor, by way of an associated constant.

Traits

ExpectOne

Type Definitions

OneVector