We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f2d21 commit f738669Copy full SHA for f738669
library/core/src/panic/panic_info.rs
@@ -136,6 +136,10 @@ impl<'a> PanicInfo<'a> {
136
/// This is true for most kinds of panics with the exception of panics
137
/// caused by trying to unwind out of a `Drop` implementation or a function
138
/// whose ABI does not support unwinding.
139
+ ///
140
+ /// It is safe for a panic handler to unwind even when this function returns
141
+ /// true, however this will simply cause the panic handler to be called
142
+ /// again.
143
#[must_use]
144
#[unstable(feature = "panic_can_unwind", issue = "92988")]
145
pub fn can_unwind(&self) -> bool {
0 commit comments