char/target/debug/build/eyre-ff2eec40c7575868/stderr
2023-01-22 12:04:41 +01:00

31 lines
1.3 KiB
Plaintext

error[E0407]: method `backtrace` is not a member of trait `Error`
--> /Users/kah/git/git.front.kjuulh.io/kjuulh/char/target/debug/build/eyre-ff2eec40c7575868/out/probe.rs:19:9
|
19 | / fn backtrace(&self) -> Option<&Backtrace> {
20 | | let backtrace = Backtrace::capture();
21 | | match backtrace.status() {
22 | | BacktraceStatus::Captured | BacktraceStatus::Disabled | _ => {}
23 | | }
24 | | unimplemented!()
25 | | }
| |_________^ not a member of trait `Error`
error[E0554]: `#![feature]` may not be used on the stable release channel
--> /Users/kah/git/git.front.kjuulh.io/kjuulh/char/target/debug/build/eyre-ff2eec40c7575868/out/probe.rs:2:16
|
2 | #![feature(backtrace)]
| ^^^^^^^^^
warning: the feature `backtrace` has been stable since 1.65.0 and no longer requires an attribute to enable
--> /Users/kah/git/git.front.kjuulh.io/kjuulh/char/target/debug/build/eyre-ff2eec40c7575868/out/probe.rs:2:16
|
2 | #![feature(backtrace)]
| ^^^^^^^^^
|
= note: `#[warn(stable_features)]` on by default
error: aborting due to 2 previous errors; 1 warning emitted
Some errors have detailed explanations: E0407, E0554.
For more information about an error, try `rustc --explain E0407`.