Trait color_eyre::section::PanicMessage[][src]

pub trait PanicMessage: Send + Sync + 'static {
    fn display(&self, pi: &PanicInfo<'_>, f: &mut Formatter<'_>) -> Result;
}
Expand description

Trait for printing a panic error message for the given PanicInfo

Required methods

Display trait equivalent for implementing the display logic

Implementors