pub unsafe fn catch_unwind<R, F: FnOnce() -> R>(
f: F,
) -> Result<R, Box<dyn Any + Send>>
Available on non-
panic=immediate-abort
only.Expand description
Invoke a closure, capturing the cause of an unwinding panic if one occurs.