Skip to main content

WorkflowError

Enum WorkflowError 

Source
#[non_exhaustive]
pub enum WorkflowError {
Show 18 variants Build(WorkflowBuildError), AuthorityEscalation { step: StepId, capability: String, }, Step { step: StepId, source: Box<WorkflowStepError>, }, ParallelBranch { step: StepId, branch: StepId, source: Box<WorkflowStepError>, }, RaceAllFailed { step: StepId, failures: BTreeMap<StepId, String>, }, Cancelled, DeadlineExceeded, DurableWaitRequiresWorker, WakeMismatch, Wait(WorkflowWaitError), Serialization(Error), Budget(BudgetExceeded), ChildRun(ChildRunError), AmbiguousCheckpoint { step: StepId, }, CheckpointIdentityMismatch, CheckpointUsageMismatch, Journal(JournalError), Checkpoint(CheckpointError),
}
Expand description

Failure of workflow execution or recovery.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Build(WorkflowBuildError)

A workflow definition is invalid.

§

AuthorityEscalation

A child requested authority absent from its parent run.

Fields

§step: StepId

Step whose grant was rejected.

§capability: String

Missing capability name.

§

Step

A step failed.

Fields

§step: StepId

Stable failed step identifier.

§source: Box<WorkflowStepError>

Typed step failure.

§

ParallelBranch

One branch of a parallel node failed.

Fields

§step: StepId

Stable parallel node identifier.

§branch: StepId

Stable failed branch identifier.

§source: Box<WorkflowStepError>

Typed branch failure.

§

RaceAllFailed

Every branch in a first-success race failed.

Fields

§step: StepId

Stable race node identifier.

§failures: BTreeMap<StepId, String>

Safe branch failure explanations.

§

Cancelled

The workflow was cancelled.

§

DeadlineExceeded

The workflow deadline elapsed.

§

DurableWaitRequiresWorker

A durable wait was executed outside the distributed worker boundary.

§

WakeMismatch

Stored wake data does not match the checkpoint’s durable wait.

§

Wait(WorkflowWaitError)

A durable wait or human decision violated its domain invariants.

§

Serialization(Error)

A durable wait output could not be represented as canonical JSON.

§

Budget(BudgetExceeded)

Parallel budget reservation or consumption exceeded a hard limit.

§

ChildRun(ChildRunError)

A child Run rejected its capability or budget scope.

§

AmbiguousCheckpoint

Recovery would silently retry a possibly partial step.

Fields

§step: StepId

Interrupted step identifier.

§

CheckpointIdentityMismatch

Persisted state does not belong to this workflow definition.

§

CheckpointUsageMismatch

Persisted usage is incompatible with the supplied run context.

§

Journal(JournalError)

Structured event recording failed.

§

Checkpoint(CheckpointError)

Checkpoint persistence or validation failed.

Trait Implementations§

Source§

impl Debug for WorkflowError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for WorkflowError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for WorkflowError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<BudgetExceeded> for WorkflowError

Source§

fn from(source: BudgetExceeded) -> Self

Converts to this type from the input type.
Source§

impl From<CheckpointError> for WorkflowError

Source§

fn from(source: CheckpointError) -> Self

Converts to this type from the input type.
Source§

impl From<ChildRunError> for WorkflowError

Source§

fn from(source: ChildRunError) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for WorkflowError

Source§

fn from(source: Error) -> Self

Converts to this type from the input type.
Source§

impl From<JournalError> for WorkflowError

Source§

fn from(source: JournalError) -> Self

Converts to this type from the input type.
Source§

impl From<WorkflowBuildError> for WorkflowError

Source§

fn from(source: WorkflowBuildError) -> Self

Converts to this type from the input type.
Source§

impl From<WorkflowWaitError> for WorkflowError

Source§

fn from(source: WorkflowWaitError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.