pub fn take_hook() -> Box<Fn(&PanicInfo) + Sync + Send + 'static>
Unregisters the current panic hook, returning it.
If no custom hook is registered, the default hook will be returned.
Panics if called from a panicking thread.
The following will print "Normal panic":
use std::panic; panic::set_hook(Box::new(|_| { println!("Custom panic hook"); })); let _ = panic::take_hook(); panic!("Normal panic");
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/panic/fn.take_hook.html