Module rayon_core::unwind
source ยท Expand description
Package up unwind recovery. Note that if you are in some sensitive
place, you can use the AbortIfPanic
helper to protect against
accidental panics in the rayon code itself.
Structsยง
- AbortIfPanic ๐
Functionsยง
- halt_unwinding ๐Executes
f
and captures any panic, translating that panic into aErr
result. The assumption is that any panic will be propagated later withresume_unwinding
, and hencef
can be treated as exception safe. - resume_unwinding ๐