mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
692 B
Plaintext
15 lines
692 B
Plaintext
error[E0046]: not all trait items implemented, missing: `Type`, `bar`, `baz`, `A`
|
|
--> $DIR/missing-assoc-fn-applicable-suggestions.rs:7:1
|
|
|
|
|
LL | impl TraitA<()> for S {
|
|
| ^^^^^^^^^^^^^^^^^^^^^ missing `Type`, `bar`, `baz`, `A` in implementation
|
|
|
|
|
= help: implement the missing item: `type Type = /* Type */;`
|
|
= help: implement the missing item: `fn bar<T>(_: T) -> Self { todo!() }`
|
|
= help: implement the missing item: `fn baz<T>(_: T) -> Self where T: TraitB, <T as TraitB>::Item: Copy { todo!() }`
|
|
= help: implement the missing item: `const A: usize = 42;`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0046`.
|