An associated type was implemented when another trait item was expected.
Erroneous code example:
#![allow(unused)]fnmain() {
structBar;
traitFoo {
const N : u32;
}
impl Foo for Bar {
typeN = u32;
// error: item `N` is an associated type, which doesn't match its// trait `<Bar as Foo>`
}
}
ⓘ
Please verify that the associated type name wasn't misspelled and your
implementation corresponds to the trait definition. Example:
#![allow(unused)]fnmain() {
structBar;
traitFoo {
typeN;
}
impl Foo for Bar {
typeN = u32; // ok!
}
}
Or:
#![allow(unused)]fnmain() {
structBar;
traitFoo {
const N : u32;
}
impl Foo for Bar {
const N : u32 = 0; // ok!
}
}