Function tracing::stdlib::panic::panic_any

1.51.0 · source ·
pub fn panic_any<M>(msg: M) -> !where
    M: 'static + Any + Send,
Expand description

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.