| 90 | |
| 91 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 92 | pub enum HpcParallelError { |
| 93 | InvalidConfig(&'static str), |
| 94 | CallbackFailed { molecule_id: usize, message: String }, |
| 95 | WorkerPanic, |
| 96 | ChannelClosed(&'static str), |
| 97 | } |
| 98 | |
| 99 | impl Display for HpcParallelError { |
| 100 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected