pub enum TestStatus {
Single(ExtelResult),
Parameterized(Vec<ExtelResult>),
}Expand description
A test result variant that helps distinguish between standard, or single, tests and
parameterized tests. Both the Single and Parameterized variants contain one or more
ExtelResult.
Variants§
Single(ExtelResult)
Parameterized(Vec<ExtelResult>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestStatus
impl !RefUnwindSafe for TestStatus
impl Send for TestStatus
impl Sync for TestStatus
impl Unpin for TestStatus
impl !UnwindSafe for TestStatus
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