| 67 | |
| 68 | #[derive(Debug, Error)] |
| 69 | pub(crate) enum ExecutorError { |
| 70 | #[error("internal channel closed")] |
| 71 | ChannelClosed, |
| 72 | |
| 73 | #[error("internal channel fulled")] |
| 74 | ChannelFulled, |
| 75 | |
| 76 | #[error("CG metadata not found for id {0}")] |
| 77 | CgMetadataMissing(u64), |
| 78 | |
| 79 | #[allow(dead_code)] |
| 80 | #[error("invalid executors state: {0}")] |
| 81 | InvalidState(&'static str), |
| 82 | } |
| 83 | |
| 84 | #[derive(Debug, Error)] |
| 85 | pub(crate) enum SaveError { |
nothing calls this directly
no outgoing calls
no test coverage detected