Struct tokio_unix_ipc::panic::PanicInfo [−][src]
pub struct PanicInfo { /* fields omitted */ }Expand description
Represents a panic caugh across processes.
This contains the marshalled panic information so that it can be used for other purposes.
This is similar to std::panic::PanicInfo but can cross process boundaries.
Implementations
Creates a panic info from a standard library one.
It will attempt to extract all information available from it
and if capture_backtrace is set to true it will also
capture a backtrace at the current location and assign it
to the panic info object.
For the backtrace parameter to have an effect the
backtrace feature needs to be enabled.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more