I'm new with rust and I need to use a 2d array of structs, however I have no idea how to initialize it and I have trouble understanding the documentation...
let mut myarray: Array2<MyStruct> = /*Something here*/;
Do you know what I should use?
Note: I don't necessarily need a dynamic sized array.