Initialize a rust-numpy array of structs

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.

I used Array::from_elem((5,6), MyStruct{some values});

I guess there must be a way of doing this using default() but I couldn't figure how.