pub type ArrayvecStorage<T, N> = ArrayvecStorageRaw<T, N, IndexForCapacity<N>>;
Expand description
A wrapper around a GenericArray
that implements the Array
trait from the arrayvec
crate, allowing it to be used as the backing store for ArrayVec
and ArrayString
.
You likely won’t need to interact with this type directly, except in where
clauses when
working with GenericArrayVec
and GenericArrayString
; see their docs for details.
Aliased Type§
#[repr(transparent)]pub struct ArrayvecStorage<T, N>(pub GenericArray<T, N>, _);
Tuple Fields§
§0: GenericArray<T, N>