pub struct TestEvaluationResult {
pub test_name: String,
pub can_run: bool,
}Expand description
Result of evaluating all requirements for a test
Fields§
§test_name: StringName of the test being evaluated
can_run: boolOverall result: can the test be run?
Implementations§
Trait Implementations§
Source§impl Clone for TestEvaluationResult
impl Clone for TestEvaluationResult
Source§fn clone(&self) -> TestEvaluationResult
fn clone(&self) -> TestEvaluationResult
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 TestEvaluationResult
impl RefUnwindSafe for TestEvaluationResult
impl Send for TestEvaluationResult
impl Sync for TestEvaluationResult
impl Unpin for TestEvaluationResult
impl UnwindSafe for TestEvaluationResult
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