Почему печатает! работать только для массивов длиной менее 33?

В Rust это работает:

fn main() {
    let a = [0; 32];
    println!("{:?}", a);
}

но это не так:

fn main() {
    let a = [0; 33];
    println!("{:?}", a);
}

Ошибка компиляции:

error[E0277]: the trait bound `[{integer}; 33]: std::fmt::Debug` is not satisfied
 --> src/main.rs:3:22
  |
3 |     println!("{:?}", a);
  |                      ^ the trait `std::fmt::Debug` is not implemented for `[{integer}; 33]`
  |
  = note: `[{integer}; 33]` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
  = note: required by `std::fmt::Debug::fmt`

Я предполагаю, чтоstd::fmt::Debug Функция каким-то образом обнаруживает типы длиной до 32 элементов, но затем отбрасывает их обнаружение. Или почему это не работает?

Ответы на вопрос(1)

Ваш ответ на вопрос