pub struct IntegrationTestResults {
pub total: usize,
pub passed: usize,
pub failed: usize,
pub results: Vec<IntegrationTestResult>,
}Expand description
Integration test results summary
Fields§
§total: usizeTotal tests
passed: usizeTests passed
failed: usizeTests failed
results: Vec<IntegrationTestResult>Individual results
Implementations§
Trait Implementations§
Source§impl Clone for IntegrationTestResults
impl Clone for IntegrationTestResults
Source§fn clone(&self) -> IntegrationTestResults
fn clone(&self) -> IntegrationTestResults
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegrationTestResults
impl RefUnwindSafe for IntegrationTestResults
impl Send for IntegrationTestResults
impl Sync for IntegrationTestResults
impl Unpin for IntegrationTestResults
impl UnsafeUnpin for IntegrationTestResults
impl UnwindSafe for IntegrationTestResults
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