pub enum ConformanceError {
ExpectedErrorButSucceeded {
case: String,
expected: String,
},
ExpectedSuccessButFailed {
case: String,
actual: String,
},
ErrorMismatch {
case: String,
expected: String,
actual: String,
},
RowMismatchOrdered {
case: String,
expected: Vec<Row>,
actual: Vec<Row>,
},
RowMismatchAnyOrder {
case: String,
expected: Vec<Row>,
actual: Vec<Row>,
},
}Variants§
ExpectedErrorButSucceeded
ExpectedSuccessButFailed
ErrorMismatch
RowMismatchOrdered
RowMismatchAnyOrder
Trait Implementations§
Source§impl Debug for ConformanceError
impl Debug for ConformanceError
Source§impl Display for ConformanceError
impl Display for ConformanceError
Source§impl Error for ConformanceError
impl Error for ConformanceError
1.30.0 · 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 PartialEq for ConformanceError
impl PartialEq for ConformanceError
impl StructuralPartialEq for ConformanceError
Auto Trait Implementations§
impl Freeze for ConformanceError
impl RefUnwindSafe for ConformanceError
impl Send for ConformanceError
impl Sync for ConformanceError
impl Unpin for ConformanceError
impl UnsafeUnpin for ConformanceError
impl UnwindSafe for ConformanceError
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