pub unsafe trait Array { type Item; // Required method fn size() -> usize; }
Types that can be used as the backing store for a SmallVec
The type of the array’s elements.
Returns the number of items the array can hold.