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§

type Output = &'l [T]

Source§

fn unpack_array(self) -> Self::Output

Source§

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

Source§

type Output = &'l mut [T]

Source§

fn unpack_array(self) -> Self::Output

Implementors§

Source§

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