[−][src]Trait smallvec::Array
Types that can be used as the backing store for a SmallVec
Associated Types
type Item
The type of the array's elements.
Required methods
fn size() -> usize
Returns the number of items the array can hold.
fn ptr(&self) -> *const Self::Item
Returns a pointer to the first element of the array.
fn ptr_mut(&mut self) -> *mut Self::Item
Returns a mutable pointer to the first element of the array.