pub trait GenericArrayVecExt<T, N> where
    N: Capacity<T>,
    ArrayvecStorage<T, N>: Array
{ fn generic_from<A>(arr: A) -> GenericArrayVec<T, N>
    where
        A: Into<GenericArray<T, N>>
; fn into_generic_array(self) -> Result<GenericArray<T, N>, Self>
    where
        Self: Sized
; }
Expand description

Extension trait for GenericArrayVec.

See its impl on GenericArrayVec for more info.

Required Methods

Implementors