We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb5067 commit 121fab0Copy full SHA for 121fab0
library/std/src/backtrace.rs
@@ -118,12 +118,15 @@ pub struct Backtrace {
118
pub enum BacktraceStatus {
119
/// Capturing a backtrace is not supported, likely because it's not
120
/// implemented for the current platform.
121
+ #[stable(feature = "backtrace", since = "1.65.0")]
122
Unsupported,
123
/// Capturing a backtrace has been disabled through either the
124
/// `RUST_LIB_BACKTRACE` or `RUST_BACKTRACE` environment variables.
125
126
Disabled,
127
/// A backtrace has been captured and the `Backtrace` should print
128
/// reasonable information when rendered.
129
130
Captured,
131
}
132
0 commit comments