[][src]Struct rusoto_codebuild::Report

pub struct Report {
    pub arn: Option<String>,
    pub created: Option<f64>,
    pub execution_id: Option<String>,
    pub expired: Option<f64>,
    pub export_config: Option<ReportExportConfig>,
    pub name: Option<String>,
    pub report_group_arn: Option<String>,
    pub status: Option<String>,
    pub test_summary: Option<TestReportSummary>,
    pub truncated: Option<bool>,
    pub type_: Option<String>,
}

Information about the results from running a series of test cases during the run of a build project. The test cases are specified in the buildspec for the build project using one or more paths to the test case files. You can specify any type of tests you want, such as unit tests, integration tests, and functional tests.

Fields

arn: Option<String>

The ARN of the report run.

created: Option<f64>

The date and time this report run occurred.

execution_id: Option<String>

The ARN of the build run that generated this report.

expired: Option<f64>

The date and time a report expires. A report expires 30 days after it is created. An expired report is not available to view in CodeBuild.

export_config: Option<ReportExportConfig>

Information about where the raw data used to generate this report was exported.

name: Option<String>

The name of the report that was run.

report_group_arn: Option<String>

The ARN of the report group associated with this report.

status: Option<String>

The status of this report.

test_summary: Option<TestReportSummary>

A TestReportSummary object that contains information about this test report.

truncated: Option<bool>

A boolean that specifies if this report run is truncated. The list of test cases is truncated after the maximum number of test cases is reached.

type_: Option<String>

The type of the report that was run.

Trait Implementations

impl Clone for Report[src]

impl Debug for Report[src]

impl Default for Report[src]

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

impl PartialEq<Report> for Report[src]

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

impl<T> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.