[][src]Struct rusoto_codebuild::TestReportSummary

pub struct TestReportSummary {
    pub duration_in_nano_seconds: i64,
    pub status_counts: HashMap<String, i64>,
    pub total: i64,
}

Information about a test report.

Fields

duration_in_nano_seconds: i64

The number of nanoseconds it took to run all of the test cases in this report.

status_counts: HashMap<String, i64>

A map that contains the number of each type of status returned by the test results in this TestReportSummary.

total: i64

The number of test cases in this TestReportSummary. The total includes truncated test cases.

Trait Implementations

impl Clone for TestReportSummary[src]

impl Debug for TestReportSummary[src]

impl Default for TestReportSummary[src]

impl<'de> Deserialize<'de> for TestReportSummary[src]

impl PartialEq<TestReportSummary> for TestReportSummary[src]

impl StructuralPartialEq for TestReportSummary[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.