pub enum OrchestratorError {
SkillRun(SkillRunError),
Runtime(RuntimeError),
Harness(HarnessReplayError),
CliToolFeatureDisabled,
}Variants§
Trait Implementations§
Source§impl Debug for OrchestratorError
impl Debug for OrchestratorError
Source§impl Display for OrchestratorError
impl Display for OrchestratorError
Source§impl Error for OrchestratorError
impl Error for OrchestratorError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<HarnessReplayError> for OrchestratorError
impl From<HarnessReplayError> for OrchestratorError
Source§fn from(source: HarnessReplayError) -> Self
fn from(source: HarnessReplayError) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeError> for OrchestratorError
impl From<RuntimeError> for OrchestratorError
Source§fn from(source: RuntimeError) -> Self
fn from(source: RuntimeError) -> Self
Converts to this type from the input type.
Source§impl From<SkillRunError> for OrchestratorError
impl From<SkillRunError> for OrchestratorError
Source§fn from(source: SkillRunError) -> Self
fn from(source: SkillRunError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for OrchestratorError
impl !UnwindSafe for OrchestratorError
impl Freeze for OrchestratorError
impl Send for OrchestratorError
impl Sync for OrchestratorError
impl Unpin for OrchestratorError
impl UnsafeUnpin for OrchestratorError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more