mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 05:21:34 +00:00

* Switch report handler to a global hook * more cleanup * remove default from example * remove broken support for no_std * back out the unneeded nostd check * remove one stackframe when capturing a Handler * update docs and prep for release * port lib.rs docs updates to readme
22 lines
947 B
Plaintext
22 lines
947 B
Plaintext
error[E0599]: no method named `eyre_kind` found for reference `&Error` in the current scope
|
|
--> $DIR/no-impl.rs:7:13
|
|
|
|
|
4 | struct Error;
|
|
| -------------
|
|
| |
|
|
| doesn't satisfy `Error: eyre::kind::TraitKind`
|
|
| doesn't satisfy `Error: std::convert::Into<eyre::Report>`
|
|
| doesn't satisfy `Error: std::fmt::Display`
|
|
...
|
|
7 | let _ = eyre!(Error);
|
|
| ^^^^^^^^^^^^ method not found in `&Error`
|
|
|
|
|
= note: the method `eyre_kind` exists but the following trait bounds were not satisfied:
|
|
`Error: std::convert::Into<eyre::Report>`
|
|
which is required by `Error: eyre::kind::TraitKind`
|
|
`Error: std::fmt::Display`
|
|
which is required by `&Error: eyre::kind::AdhocKind`
|
|
`&Error: std::convert::Into<eyre::Report>`
|
|
which is required by `&Error: eyre::kind::TraitKind`
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|