pub enum PassFail<P, F> {
Pass(P),
Fail(F),
}Expand description
Describe whether or not a Regression passed or failed.
Variants§
Trait Implementations§
impl<P: Copy, F: Copy> Copy for PassFail<P, F>
Auto Trait Implementations§
impl<P, F> Freeze for PassFail<P, F>
impl<P, F> RefUnwindSafe for PassFail<P, F>where
P: RefUnwindSafe,
F: RefUnwindSafe,
impl<P, F> Send for PassFail<P, F>
impl<P, F> Sync for PassFail<P, F>
impl<P, F> Unpin for PassFail<P, F>
impl<P, F> UnsafeUnpin for PassFail<P, F>where
P: UnsafeUnpin,
F: UnsafeUnpin,
impl<P, F> UnwindSafe for PassFail<P, F>where
P: UnwindSafe,
F: UnwindSafe,
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