UnpackArrayAPI

Trait UnpackArrayAPI 

Source
pub trait UnpackArrayAPI {
    type Output;

    // Required method
    fn unpack_array(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn unpack_array(self) -> Self::Output

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

type Output = &'l mut [T]

Source§

fn unpack_array(self) -> <&'l mut [[T; N]] as UnpackArrayAPI>::Output

Implementors§

Source§

impl<'l, T, const N: usize> UnpackArrayAPI for DataCow<'l, Vec<[T; N]>>

Source§

type Output = DataCow<'l, Vec<T>>

Source§

impl<'l, T, const N: usize> UnpackArrayAPI for DataMut<'l, Vec<[T; N]>>

Source§

type Output = DataMut<'l, Vec<T>>

Source§

impl<'l, T, const N: usize> UnpackArrayAPI for DataRef<'l, Vec<[T; N]>>

Source§

type Output = DataRef<'l, Vec<T>>

Source§

impl<T, const N: usize> UnpackArrayAPI for DataOwned<Vec<[T; N]>>

Source§

impl<T, const N: usize> UnpackArrayAPI for Vec<[T; N]>