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

pub struct FileCoverage {
    pub path: String,
    pub line_coverage: Option<LineCoverage>,
    pub branch_coverage: Option<BranchCoverage>,
}

Describes code coverage for a particular file under test.

Fields

path: String

Path of source file within the SourceContext of this Invocation.

line_coverage: Option<LineCoverage>

Details of lines in a file for calculating line coverage.

branch_coverage: Option<BranchCoverage>

Details of branches in a file for calculating branch coverage.

Trait Implementations

impl Clone for FileCoverage[src]

impl Debug for FileCoverage[src]

impl Default for FileCoverage[src]

impl Message for FileCoverage[src]

impl PartialEq<FileCoverage> for FileCoverage[src]

impl StructuralPartialEq for FileCoverage[src]

Auto Trait Implementations

impl RefUnwindSafe for FileCoverage

impl Send for FileCoverage

impl Sync for FileCoverage

impl Unpin for FileCoverage

impl UnwindSafe for FileCoverage

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]