Remove the "which is required by `{root_obligation}`" post-script in
"the trait `X` is not implemented for `Y`" explanation in E0277. This
information is already conveyed in the notes explaining requirements,
making it redundant while making the text (particularly in labels)
harder to read.
```
error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
--> $DIR/wf-static-type.rs:10:13
|
LL | static FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`
|
= note: required for `Option<NotCopy>` to implement `Copy`
note: required by a bound in `IsCopy`
--> $DIR/wf-static-type.rs:7:17
|
LL | struct IsCopy<T:Copy> { t: T }
| ^^^^ required by this bound in `IsCopy`
```
vs the prior
```
error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
--> $DIR/wf-static-type.rs:10:13
|
LL | static FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`, which is required by `Option<NotCopy>: Copy`
|
= note: required for `Option<NotCopy>` to implement `Copy`
note: required by a bound in `IsCopy`
--> $DIR/wf-static-type.rs:7:17
|
LL | struct IsCopy<T:Copy> { t: T }
| ^^^^ required by this bound in `IsCopy`
```
50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
error[E0277]: the trait bound `T: Copy` is not satisfied in `dyn Setup<From = T>`
|
|
--> $DIR/dyn-incompatibility.rs:12:12
|
|
|
|
|
LL | copy::<dyn Setup<From=T>>(t)
|
|
| ^^^^^^^^^^^^^^^^^ within `dyn Setup<From = T>`, the trait `Copy` is not implemented for `T`
|
|
|
|
|
= note: required because it appears within the type `dyn Setup<From = T>`
|
|
note: required by a bound in `copy`
|
|
--> $DIR/dyn-incompatibility.rs:7:12
|
|
|
|
|
LL | fn copy<U: Setup + ?Sized>(from: &U::From) -> U::From {
|
|
| ^^^^^ required by this bound in `copy`
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
LL | pub fn copy_any<T: std::marker::Copy>(t: &T) -> T {
|
|
| +++++++++++++++++++
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/dyn-incompatibility.rs:12:31
|
|
|
|
|
LL | copy::<dyn Setup<From=T>>(t)
|
|
| ------------------------- ^ types differ
|
|
| |
|
|
| arguments to this function are incorrect
|
|
|
|
|
= note: expected reference `&<dyn Setup<From = T> as Setup>::From`
|
|
found reference `&T`
|
|
note: function defined here
|
|
--> $DIR/dyn-incompatibility.rs:7:4
|
|
|
|
|
LL | fn copy<U: Setup + ?Sized>(from: &U::From) -> U::From {
|
|
| ^^^^ --------------
|
|
|
|
error[E0277]: the trait bound `T: Copy` is not satisfied in `dyn Setup<From = T>`
|
|
--> $DIR/dyn-incompatibility.rs:12:5
|
|
|
|
|
LL | copy::<dyn Setup<From=T>>(t)
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ within `dyn Setup<From = T>`, the trait `Copy` is not implemented for `T`
|
|
|
|
|
= note: required because it appears within the type `dyn Setup<From = T>`
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
LL | pub fn copy_any<T: std::marker::Copy>(t: &T) -> T {
|
|
| +++++++++++++++++++
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
Some errors have detailed explanations: E0277, E0308.
|
|
For more information about an error, try `rustc --explain E0277`.
|