pub enum TestDecision {
Accept,
Reject(String),
}Expand description
The final policy-based verdict of a test, after applying the test mode. Determines whether the test should be considered passing or failing.
Variants§
Implementations§
Source§impl TestDecision
impl TestDecision
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestDecision
impl RefUnwindSafe for TestDecision
impl Send for TestDecision
impl Sync for TestDecision
impl Unpin for TestDecision
impl UnwindSafe for TestDecision
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