pub enum StepError<E> {
Pipeline(E),
Workflow(CortexAdapterError),
}Expand description
Error from driving a capability-bearing step.
Variants§
Pipeline(E)
The claim pipeline errored.
Workflow(CortexAdapterError)
Writing the resulting task transition to the workflow chain failed.
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for StepError<E>where
E: Freeze,
impl<E> RefUnwindSafe for StepError<E>where
E: RefUnwindSafe,
impl<E> Send for StepError<E>where
E: Send,
impl<E> Sync for StepError<E>where
E: Sync,
impl<E> Unpin for StepError<E>where
E: Unpin,
impl<E> UnsafeUnpin for StepError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for StepError<E>where
E: UnwindSafe,
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