pub fn into_nested_vec<T, const SIZE: usize>(
    array: [[T; SIZE]; SIZE]
) -> Vec<Vec<T>>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
Expand description

Converts a fixed-sized nested array [[T; SIZE]; SIZE] into a nested vector Vec<Vec<T>>.