如何在 Rust 中创建一个空的可变二维数组?
这是我到目前为止所尝试的:
let mut state[[u8 * 4] * 4];
这会产生错误
error: expected one of `:`, `;`, `=`, or `@`, found `[`
--> src/main.rs:2:18
|
2 | let mut state[[u8 * 4] * 4];
| ^ expected one of `:`, `;`, `=`, or `@` here