pub enum RunError {
InvalidPlan(ErrorInfo),
Storage(StorageError),
Context(ContextError),
Io(IoError),
State(StateError),
Other(ErrorInfo),
}Expand description
Run-level errors from the engine.
Variants§
InvalidPlan(ErrorInfo)
The supplied execution plan violated structural invariants.
Storage(StorageError)
The run failed because a storage backend returned an error.
Context(ContextError)
The run failed because the execution context returned an error.
Io(IoError)
The run failed because the IO provider returned an error.
State(StateError)
The run failed because a state handler returned an error.
Other(ErrorInfo)
Any other run-level failure.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunError
impl<'de> Deserialize<'de> for RunError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RunError
impl StructuralPartialEq for RunError
Auto Trait Implementations§
impl Freeze for RunError
impl RefUnwindSafe for RunError
impl Send for RunError
impl Sync for RunError
impl Unpin for RunError
impl UnsafeUnpin for RunError
impl UnwindSafe for RunError
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