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

Functions

  • Executes f and captures any panic, translating that panic into a Err result. The assumption is that any panic will be propagated later with resume_unwinding, and hence f can be treated as exception safe.