pub enum OrchestrationError {
Show 13 variants
ProjectNotFound(String),
CircularDependency(String),
DependencyValidationFailed(String),
BatchExecutionFailed(String),
ConfigurationError(String),
RulesValidationFailed(String),
VersionConstraintViolation(String),
TransactionFailed(String),
RollbackFailed(String),
IoError(Error),
PathResolutionError(String),
SerializationError(Error),
YamlError(String),
}Expand description
Errors that can occur during orchestration operations
Variants§
ProjectNotFound(String)
CircularDependency(String)
DependencyValidationFailed(String)
BatchExecutionFailed(String)
ConfigurationError(String)
RulesValidationFailed(String)
VersionConstraintViolation(String)
TransactionFailed(String)
RollbackFailed(String)
IoError(Error)
PathResolutionError(String)
SerializationError(Error)
YamlError(String)
Trait Implementations§
Source§impl Debug for OrchestrationError
impl Debug for OrchestrationError
Source§impl Display for OrchestrationError
impl Display for OrchestrationError
Source§impl Error for OrchestrationError
impl Error for OrchestrationError
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<Error> for OrchestrationError
impl From<Error> for OrchestrationError
Source§impl From<Error> for OrchestrationError
impl From<Error> for OrchestrationError
Auto Trait Implementations§
impl Freeze for OrchestrationError
impl !RefUnwindSafe for OrchestrationError
impl Send for OrchestrationError
impl Sync for OrchestrationError
impl Unpin for OrchestrationError
impl !UnwindSafe for OrchestrationError
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