PackableArrayAPI

Trait PackableArrayAPI 

Source
pub trait PackableArrayAPI<T, const N: usize> {
    type Array;
    type ArrayVec;
}

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<'l, T, const N: usize> PackableArrayAPI<T, N> for &'l [T]

Source§

impl<'l, T, const N: usize> PackableArrayAPI<T, N> for &'l mut [T]

Implementors§

Source§

impl<'l, T, const N: usize> PackableArrayAPI<T, N> for DataCow<'l, Vec<T>>

Source§

impl<'l, T, const N: usize> PackableArrayAPI<T, N> for DataMut<'l, Vec<T>>

Source§

impl<'l, T, const N: usize> PackableArrayAPI<T, N> for DataRef<'l, Vec<T>>

Source§

impl<T, const N: usize> PackableArrayAPI<T, N> for DataOwned<Vec<T>>

Source§

impl<T, const N: usize> PackableArrayAPI<T, N> for Vec<T>