Function std::panic::panic_any
pub fn panic_any<M: 'static + Any + Send>(msg: M) -> !
Panic the current thread with the given message as the panic payload.
The message can be of any (Any + Send
) type, not just strings.
The message is wrapped in a Box<'static + Any + Send>
, which can be accessed later using PanicInfo::payload
.
See the panic!
macro for more information about panicking.
© 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.panic_any.html