Enum std::panic::BacktraceStyle
source · #[non_exhaustive]
pub enum BacktraceStyle {
Short,
Full,
Off,
}
🔬This is a nightly-only experimental API. (
panic_backtrace_config
#93346)Expand description
The configuration for whether and how the default panic hook will capture and display the backtrace.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Short
🔬This is a nightly-only experimental API. (
panic_backtrace_config
#93346)Prints a terser backtrace which ideally only contains relevant information.
Full
🔬This is a nightly-only experimental API. (
panic_backtrace_config
#93346)Prints a backtrace with all possible information.
Off
🔬This is a nightly-only experimental API. (
panic_backtrace_config
#93346)Disable collecting and displaying backtraces.
Trait Implementations§
source§impl Clone for BacktraceStyle
impl Clone for BacktraceStyle
source§fn clone(&self) -> BacktraceStyle
fn clone(&self) -> BacktraceStyle
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BacktraceStyle
impl Debug for BacktraceStyle
source§impl PartialEq<BacktraceStyle> for BacktraceStyle
impl PartialEq<BacktraceStyle> for BacktraceStyle
source§fn eq(&self, other: &BacktraceStyle) -> bool
fn eq(&self, other: &BacktraceStyle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.