[][src]Struct junit_report::Report

pub struct Report { /* fields omitted */ }

Root element of a JUnit report

Implementations

impl Report[src]

pub fn testsuites(&self) -> &Vec<TestSuite>[src]

impl Report[src]

pub fn new() -> Report[src]

Create a new empty Report

pub fn add_testsuite(self, testsuite: TestSuite) -> Self[src]

Add a TestSuite to this report.

The function takes ownership of the supplied TestSuite.

pub fn add_testsuites(
    self,
    testsuites: impl IntoIterator<Item = TestSuite>
) -> Self
[src]

Add multipleTestSuites from an iterator.

pub fn write_xml<W: Write>(&self, sink: W) -> Result<(), ReportError>[src]

Write the XML version of the Report to the given Writer.

Trait Implementations

impl Clone for Report[src]

impl Debug for Report[src]

impl Default for Report[src]

Auto Trait Implementations

impl RefUnwindSafe for Report

impl Send for Report

impl Sync for Report

impl Unpin for Report

impl UnwindSafe for Report

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.