1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
pub use std::error::Error;
pub use thiserror::Error;
use crate::prelude::*;
#[derive(Error, From)]
pub struct Panic {
pub value: Box<dyn Any + Send>,
}
impl Panic {
pub fn value_str(&self) -> Option<&str> {
if let Some(string) = self.value.downcast_ref::<String>() {
Some(string)
} else if let Some(string) = self.value.downcast_ref::<&'static str>() {
Some(string)
} else {
None
}
}
}
impl Debug for Panic {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "PanicError")?;
if let Some(value) = self.value_str() {
write!(f, "({:?})", value)?;
}
Ok(())
}
}
impl Display for Panic {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Panicked")?;
if let Some(value) = self.value_str() {
write!(f, " with `{}`", value)?;
}
write!(f, ".")
}
}