pub unsafe trait Array {
    type Item;

    fn size() -> usize;
}
Expand description

Types that can be used as the backing store for a SmallVec

Required Associated Types

The type of the array’s elements.

Required Methods

Returns the number of items the array can hold.

Implementations on Foreign Types

Implementors