mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 02:26:55 +00:00
When encountering an unmet trait bound, point at local type that doesn't implement the trait: ``` error[E0277]: the trait bound `Bar<T>: Foo` is not satisfied --> $DIR/issue-64855.rs:9:19 | LL | pub struct Bar<T>(<Self as Foo>::Type) where Self: ; | ^^^^^^^^^^^^^^^^^^^ unsatisfied trait bound | help: the trait `Foo` is not implemented for `Bar<T>` --> $DIR/issue-64855.rs:9:1 | LL | pub struct Bar<T>(<Self as Foo>::Type) where Self: ; | ^^^^^^^^^^^^^^^^^ ```
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
error[E0277]: `MyError` doesn't implement `std::fmt::Display`
|
|
--> $DIR/issue-71363.rs:4:28
|
|
|
|
|
4 | impl std::error::Error for MyError {}
|
|
| ^^^^^^^ unsatisfied trait bound
|
|
|
|
|
help: the trait `std::fmt::Display` is not implemented for `MyError`
|
|
--> $DIR/issue-71363.rs:3:1
|
|
|
|
|
3 | struct MyError;
|
|
| ^^^^^^^^^^^^^^
|
|
note: required by a bound in `std::error::Error`
|
|
--> $SRC_DIR/core/src/error.rs:LL:COL
|
|
|
|
error[E0277]: `MyError` doesn't implement `Debug`
|
|
--> $DIR/issue-71363.rs:4:28
|
|
|
|
|
4 | impl std::error::Error for MyError {}
|
|
| ^^^^^^^ the trait `Debug` is not implemented for `MyError`
|
|
|
|
|
= note: add `#[derive(Debug)]` to `MyError` or manually `impl Debug for MyError`
|
|
note: required by a bound in `std::error::Error`
|
|
--> $SRC_DIR/core/src/error.rs:LL:COL
|
|
help: consider annotating `MyError` with `#[derive(Debug)]`
|
|
|
|
|
3 + #[derive(Debug)]
|
|
4 | struct MyError;
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|