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ยง

  • halt_unwinding ๐Ÿ”’
    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.
  • resume_unwinding ๐Ÿ”’