pub enum EngineErrorClass {
Infra,
AssertFailed,
UserInput,
Setup,
}Expand description
How an engine failure folds into the core taxonomy (ADR-0009).
Variants§
Infra
Infrastructure trouble (connection, native library, …) → CoreError::System.
AssertFailed
An assertion in the system under test failed → CoreError::TestFailure.
UserInput
A mistake in the test’s own text the author must fix (bad query
expression, undefined runtime variable, unreadable body file) →
CoreError::User.
Setup
The engine could not be set up or configured → CoreError::System.
Trait Implementations§
Source§impl Clone for EngineErrorClass
impl Clone for EngineErrorClass
Source§fn clone(&self) -> EngineErrorClass
fn clone(&self) -> EngineErrorClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EngineErrorClass
Source§impl Debug for EngineErrorClass
impl Debug for EngineErrorClass
impl Eq for EngineErrorClass
Source§impl PartialEq for EngineErrorClass
impl PartialEq for EngineErrorClass
impl StructuralPartialEq for EngineErrorClass
Auto Trait Implementations§
impl Freeze for EngineErrorClass
impl RefUnwindSafe for EngineErrorClass
impl Send for EngineErrorClass
impl Sync for EngineErrorClass
impl Unpin for EngineErrorClass
impl UnsafeUnpin for EngineErrorClass
impl UnwindSafe for EngineErrorClass
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.