pub enum WorkflowRunError {
Compile(WorkflowCompileError),
InvalidInput(String),
Preflight(String),
Storage(String),
NotFound,
Terminal,
}Variants§
Compile(WorkflowCompileError)
InvalidInput(String)
Preflight(String)
Storage(String)
NotFound
Terminal
Trait Implementations§
Source§impl Debug for WorkflowRunError
impl Debug for WorkflowRunError
Source§impl Display for WorkflowRunError
impl Display for WorkflowRunError
Source§impl Error for WorkflowRunError
impl Error for WorkflowRunError
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<WorkflowCompileError> for WorkflowRunError
impl From<WorkflowCompileError> for WorkflowRunError
Source§fn from(source: WorkflowCompileError) -> Self
fn from(source: WorkflowCompileError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WorkflowRunError
impl RefUnwindSafe for WorkflowRunError
impl Send for WorkflowRunError
impl Sync for WorkflowRunError
impl Unpin for WorkflowRunError
impl UnsafeUnpin for WorkflowRunError
impl UnwindSafe for WorkflowRunError
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