Content-Length: 8367 | pFad | https://doc.rust-lang.org/std/iter/../option/../../std/../../std/panic/fn.resume_unwind.html

resume_unwind in std::panic - Rust

resume_unwind

Function resume_unwind 

1.9.0 · Source
pub fn resume_unwind(payload: Box<dyn Any + Send>) -> !
Expand description

Triggers a panic without invoking the panic hook.

This is designed to be used in conjunction with catch_unwind to, for example, carry a panic across a layer of C code.

§Notes

Note that panics in Rust are not always implemented via unwinding, but they may be implemented by aborting the process. If this function is called when panics are implemented this way then this function will abort the process, not trigger an unwind.

§Examples

use std::panic;

let result = panic::catch_unwind(|| {
    if 1 != 2 {
        panic!("oh no!");
    }
});

if let Err(err) = result {
    panic::resume_unwind(err);
}








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/iter/../option/../../std/../../std/panic/fn.resume_unwind.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy