Error code E0324
A method was implemented when another trait item was expected.
Erroneous code example:
#![allow(unused)] fn main() { struct Bar; trait Foo { const N : u32; fn M(); } impl Foo for Bar { fn N() {} // error: item `N` is an associated method, which doesn't match its // trait `<Bar as Foo>` } }
To fix this error, please verify that the method name wasn't misspelled and verify that you are indeed implementing the correct trait items. Example:
#![allow(unused)] fn main() { struct Bar; trait Foo { const N : u32; fn M(); } impl Foo for Bar { const N : u32 = 0; fn M() {} // ok! } }