pub struct Conclusion { /* private fields */ }Expand description
Struct that represent the final result of the test run to display some number.
- has_aborted: Indicates whether a true panic occurred.
- num_ignored: The number of tests that were marked as non-running.
- num_passed: The number of tests that passed with success.
- num_failed; The number of tests that failed during they run.
- num_skipped: The number of tests that were skipped because a previous one aborted.
Trait Implementations§
Source§impl Default for Conclusion
impl Default for Conclusion
Source§fn default() -> Conclusion
fn default() -> Conclusion
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Conclusion
impl RefUnwindSafe for Conclusion
impl Send for Conclusion
impl Sync for Conclusion
impl Unpin for Conclusion
impl UnwindSafe for Conclusion
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