pub trait PrimitiveArray<T> {
    type Array;

    // Required method
    fn convert_array(&self) -> Self::Array;
}

Required Associated Types§

Required Methods§

source

fn convert_array(&self) -> Self::Array

Implementations on Foreign Types§

source§

impl<F: Copy + Primitive<T>, T: Default + Copy, const N: usize> PrimitiveArray<T> for [F; N]

§

type Array = [T; N]

source§

fn convert_array(&self) -> Self::Array

Implementors§