|
1 | 1 | error[E0599]: the method `anyhow_kind` exists for reference `&Error`, but its trait bounds were not satisfied
|
2 |
| - --> $DIR/no-impl.rs:7:13 |
3 |
| - | |
4 |
| -4 | struct Error; |
5 |
| - | ------------- |
6 |
| - | | |
7 |
| - | doesn't satisfy `Error: Into<anyhow::Error>` |
8 |
| - | doesn't satisfy `Error: anyhow::private::kind::TraitKind` |
9 |
| - | doesn't satisfy `Error: std::fmt::Display` |
| 2 | + --> $DIR/tests/ui/no-impl.rs:7:13 |
| 3 | + | |
| 4 | +4 | struct Error; |
| 5 | + | ------------- |
| 6 | + | | |
| 7 | + | doesn't satisfy `Error: Into<anyhow::Error>` |
| 8 | + | doesn't satisfy `Error: anyhow::private::kind::TraitKind` |
| 9 | + | doesn't satisfy `Error: std::fmt::Display` |
10 | 10 | ...
|
11 |
| -7 | let _ = anyhow!(Error); |
12 |
| - | ^^^^^^^^^^^^^^ method cannot be called on `&Error` due to unsatisfied trait bounds |
13 |
| - | |
14 |
| - = note: the following trait bounds were not satisfied: |
15 |
| - `Error: Into<anyhow::Error>` |
16 |
| - which is required by `Error: anyhow::private::kind::TraitKind` |
17 |
| - `Error: std::fmt::Display` |
18 |
| - which is required by `&Error: anyhow::private::kind::AdhocKind` |
19 |
| - `&Error: Into<anyhow::Error>` |
20 |
| - which is required by `&Error: anyhow::private::kind::TraitKind` |
21 |
| - = note: this error originates in the macro `anyhow` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 11 | +7 | let _ = anyhow!(Error); |
| 12 | + | ^^^^^^^^^^^^^^ method cannot be called on `&Error` due to unsatisfied trait bounds |
| 13 | + | |
| 14 | + = note: the following trait bounds were not satisfied: |
| 15 | + `Error: Into<anyhow::Error>` |
| 16 | + which is required by `Error: anyhow::private::kind::TraitKind` |
| 17 | + `Error: std::fmt::Display` |
| 18 | + which is required by `&Error: anyhow::private::kind::AdhocKind` |
| 19 | + `&Error: Into<anyhow::Error>` |
| 20 | + which is required by `&Error: anyhow::private::kind::TraitKind` |
| 21 | +note: the following traits must be implemented |
| 22 | + --> $RUST/core/src/convert/mod.rs |
| 23 | + | |
| 24 | + | / pub trait Into<T>: Sized { |
| 25 | + | | /// Performs the conversion. |
| 26 | + | | #[stable(feature = "rust1", since = "1.0.0")] |
| 27 | + | | fn into(self) -> T; |
| 28 | + | | } |
| 29 | + | |_^ |
| 30 | + | |
| 31 | + ::: $RUST/core/src/fmt/mod.rs |
| 32 | + | |
| 33 | + | / pub trait Display { |
| 34 | + | | /// Formats the value using the given formatter. |
| 35 | + | | /// |
| 36 | + | | /// # Examples |
| 37 | +... | |
| 38 | + | | fn fmt(&self, f: &mut Formatter<'_>) -> Result; |
| 39 | + | | } |
| 40 | + | |_^ |
| 41 | + = note: this error originates in the macro `anyhow` (in Nightly builds, run with -Z macro-backtrace for more info) |
0 commit comments