pub fn from_array<T, const N: usize>(data: [T; N]) -> Vec<T>
Create a Vec<T> from an array [T; N].
Vec<T>
[T; N]