pub enum BuildError {
DuplicateTaskId(String),
TaskNotFound(String),
EmptyBranch,
EmptyFork,
MissingBranches {
branch_id: String,
missing_keys: Vec<String>,
},
OrphanBranches {
branch_id: String,
orphan_keys: Vec<String>,
},
InvalidMaxIterations(String),
EmptyWorkflow,
InvalidDuration(String),
DefinitionMismatch {
expected: String,
found: String,
},
}Expand description
Errors produced during workflow construction (builder / hydration).
Variants§
DuplicateTaskId(String)
A duplicate task ID was found during workflow building.
TaskNotFound(String)
A referenced task ID was not found in the registry.
EmptyBranch
A branch closure produced an empty sub-builder (no steps added).
EmptyFork
A fork has no branches.
MissingBranches
One or more declared branch keys have no corresponding .branch() call
and no default branch was provided.
Fields
OrphanBranches
One or more .branch() calls use keys not declared in the BranchKey enum.
Fields
InvalidMaxIterations(String)
A loop’s max_iterations was set to zero.
EmptyWorkflow
The workflow has no tasks.
InvalidDuration(String)
A duration value is not finite or is negative.
DefinitionMismatch
The workflow definition hash doesn’t match during hydration.
Trait Implementations§
Source§impl Clone for BuildError
impl Clone for BuildError
Source§fn clone(&self) -> BuildError
fn clone(&self) -> BuildError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuildError
impl Debug for BuildError
Source§impl Display for BuildError
impl Display for BuildError
Source§impl Error for BuildError
impl Error for BuildError
1.30.0 · 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<BuildError> for BuildErrors
impl From<BuildError> for BuildErrors
Source§fn from(error: BuildError) -> Self
fn from(error: BuildError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BuildError
impl RefUnwindSafe for BuildError
impl Send for BuildError
impl Sync for BuildError
impl Unpin for BuildError
impl UnsafeUnpin for BuildError
impl UnwindSafe for BuildError
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