pub trait PanicMessage: Send + Sync + 'static { // Required method fn display(&self, pi: &PanicInfo<'_>, f: &mut Formatter<'_>) -> Result; }
Trait for printing a panic error message for the given PanicInfo
Display trait equivalent for implementing the display logic