pub enum VerifyCaseOutcome {
Pass,
Skipped,
Mismatch {
expected: String,
actual: String,
},
RuntimeError {
error: String,
},
UnexpectedErr {
err_repr: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for VerifyCaseOutcome
impl Clone for VerifyCaseOutcome
Source§fn clone(&self) -> VerifyCaseOutcome
fn clone(&self) -> VerifyCaseOutcome
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VerifyCaseOutcome
impl RefUnwindSafe for VerifyCaseOutcome
impl Send for VerifyCaseOutcome
impl Sync for VerifyCaseOutcome
impl Unpin for VerifyCaseOutcome
impl UnsafeUnpin for VerifyCaseOutcome
impl UnwindSafe for VerifyCaseOutcome
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