MCPcopy Create free account
hub / github.com/RustOtomeLab/RustEng / ExecutorError

Enum ExecutorError

src/error.rs:69–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67
68#[derive(Debug, Error)]
69pub(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)]
85pub(crate) enum SaveError {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected