[][src]Struct rusoto_codebuild::CodeCoverage

pub struct CodeCoverage {
    pub branch_coverage_percentage: Option<f64>,
    pub branches_covered: Option<i64>,
    pub branches_missed: Option<i64>,
    pub expired: Option<f64>,
    pub file_path: Option<String>,
    pub id: Option<String>,
    pub line_coverage_percentage: Option<f64>,
    pub lines_covered: Option<i64>,
    pub lines_missed: Option<i64>,
    pub report_arn: Option<String>,
}

Contains code coverage report information.

Line coverage measures how many statements your tests cover. A statement is a single instruction, not including comments, conditionals, etc.

Branch coverage determines if your tests cover every possible branch of a control structure, such as an if or case statement.

Fields

branch_coverage_percentage: Option<f64>

The percentage of branches that are covered by your tests.

branches_covered: Option<i64>

The number of conditional branches that are covered by your tests.

branches_missed: Option<i64>

The number of conditional branches that are not covered by your tests.

expired: Option<f64>

The date and time that the tests were run.

file_path: Option<String>

The path of the test report file.

id: Option<String>

The identifier of the code coverage report.

line_coverage_percentage: Option<f64>

The percentage of lines that are covered by your tests.

lines_covered: Option<i64>

The number of lines that are covered by your tests.

lines_missed: Option<i64>

The number of lines that are not covered by your tests.

report_arn: Option<String>

The ARN of the report.

Trait Implementations

impl Clone for CodeCoverage[src]

impl Debug for CodeCoverage[src]

impl Default for CodeCoverage[src]

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

impl PartialEq<CodeCoverage> for CodeCoverage[src]

impl StructuralPartialEq for CodeCoverage[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.