A fixed-size array, denoted [T; N], for the element type, T, and the non-negative compile-time constant size, N. This is what you find when you read the first few lines of the documentation about the array type in Rust. Let’s go through this piece by piece. …