[−][src]Struct junit_parser::TestSuites
Struct representing a JUnit report, containing test suites TestSuite
Fields
suites: HashMap<String, TestSuite>time: f64How long the test suites took to run, from the time attribute
tests: u64Number of tests in the test suites, from the tests attribute
errors: u64Number of tests in error in the test suites, from the errors attribute
failures: u64Number of tests in failure in the test suites, from the failures attribute
skipped: u64Number of tests skipped in the test suites, from the skipped attribute
name: StringName of the test suites, from the name attribute
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TestSuites
impl Send for TestSuites
impl Sync for TestSuites
impl Unpin for TestSuites
impl UnwindSafe for TestSuites
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,