Como inicializar por padrão uma estrutura contendo uma matriz no Rust?
Qual é a maneira recomendada de declarar uma estrutura que contém uma matriz e, em seguida, criar uma instância inicializada com zero?
Aqui está a estrutura:
#[derive(Default)]
struct Histogram {
sum: u32,
bins: [u32; 256],
}
e o erro do compilador:
error[E0277]: the trait bound `[u32; 256]: std::default::Default` is not satisfied
--> src/lib.rs:4:5
|
4 | bins: [u32; 256],
| ^^^^^^^^^^^^^^^^ the trait `std::default::Default` is not implemented for `[u32; 256]`
|
= help: the following implementations were found:
<[T; 14] as std::default::Default>
<&'a [T] as std::default::Default>
<[T; 22] as std::default::Default>
<[T; 7] as std::default::Default>
and 31 others
= note: required by `std::default::Default::default`
Se eu tentar adicionar o inicializador ausente para a matriz:
impl Default for [u32; 256] {
fn default() -> [u32; 255] {
[0; 256]
}
}
Eu recebo:
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
--> src/lib.rs:7:5
|
7 | impl Default for [u32; 256] {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
|
= note: the impl does not reference any types defined in this crate
= note: define and implement a trait or new type instead
Estou fazendo algo errado?