Struct gapi_grpc::google::devtools::resultstore::v2::BranchCoverageSummary[][src]

pub struct BranchCoverageSummary {
    pub total_branch_count: i32,
    pub executed_branch_count: i32,
    pub taken_branch_count: i32,
}

Summary of branch coverage A branch may be:

Fields

total_branch_count: i32

The number of branches present in the file.

executed_branch_count: i32

The number of branches executed out of the total branches present. A branch is executed when its condition is evaluated. This is <= total_branch_count as not all branches are executed.

taken_branch_count: i32

The number of branches taken out of the total branches executed. A branch is taken when its condition is satisfied. This is <= executed_branch_count as not all executed branches are taken.

Trait Implementations

impl Clone for BranchCoverageSummary[src]

impl Debug for BranchCoverageSummary[src]

impl Default for BranchCoverageSummary[src]

impl Message for BranchCoverageSummary[src]

impl PartialEq<BranchCoverageSummary> for BranchCoverageSummary[src]

impl StructuralPartialEq for BranchCoverageSummary[src]

Auto Trait Implementations

impl RefUnwindSafe for BranchCoverageSummary

impl Send for BranchCoverageSummary

impl Sync for BranchCoverageSummary

impl Unpin for BranchCoverageSummary

impl UnwindSafe for BranchCoverageSummary

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]