pub struct PanicInfo { /* private fields */ }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§
Trait Implementations§
source§impl<'de> Deserialize<'de> for PanicInfo
impl<'de> Deserialize<'de> for PanicInfo
source§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
source§impl From<PanicInfo> for SpawnError
impl From<PanicInfo> for SpawnError
source§fn from(panic: PanicInfo) -> SpawnError
fn from(panic: PanicInfo) -> SpawnError
Converts to this type from the input type.