Trait PrimitiveArray

Source
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]

Implementors§