| 234 | |
| 235 | #[derive(serde::Serialize)] |
| 236 | struct CrashEntry { |
| 237 | id: usize, |
| 238 | time: std::time::Duration, |
| 239 | parent: Option<InputId>, |
| 240 | count: usize, |
| 241 | exit: String, |
| 242 | callstack: Vec<u64>, |
| 243 | } |
| 244 | |
| 245 | pub struct CrashLogger { |
| 246 | crashes: HashMap<String, CrashEntry>, |
nothing calls this directly
no outgoing calls
no test coverage detected