struct McpCompactCoverageDigest<'a> {
available: bool,
active_generation: &'a IndexGeneration,
parser: Option<&'a ParserKind>,
provider: Option<&'a ParserKind>,
states: McpCompactCoverageStateCounts,
total: u64,
covered: u64,
omitted: u64,
relation_rows: u32,
truncated: bool,
trust: &'a CoverageTrustState,
next_call: &'a NavigationNextCall,
}Expand description
Adapter-local compact coverage projection that leaves shared serialization unchanged.
Fields§
§available: boolFalse when no current coverage rows exist.
active_generation: &'a IndexGenerationActive generation shared by retained rows.
parser: Option<&'a ParserKind>Source parser pass recorded for the file.
provider: Option<&'a ParserKind>Fact provider pass recorded for the file.
states: McpCompactCoverageStateCountsSparse per-state counts.
total: u64Total items declared by retained rows.
covered: u64Covered items declared by retained rows.
omitted: u64Omitted or untrusted items declared by retained rows.
relation_rows: u32Number of retained relation-family rows.
truncated: boolWhether digest bounds omitted additional selected-file rows.
trust: &'a CoverageTrustStateConservative trust state across retained rows.
next_call: &'a NavigationNextCallExisting opt-in health call for deeper coverage discovery.
Trait Implementations§
Source§impl<'a> Debug for McpCompactCoverageDigest<'a>
impl<'a> Debug for McpCompactCoverageDigest<'a>
Source§impl<'a> From<&'a CoverageDigest> for McpCompactCoverageDigest<'a>
impl<'a> From<&'a CoverageDigest> for McpCompactCoverageDigest<'a>
Source§fn from(coverage: &'a CoverageDigest) -> Self
fn from(coverage: &'a CoverageDigest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for McpCompactCoverageDigest<'a>
impl<'a> RefUnwindSafe for McpCompactCoverageDigest<'a>
impl<'a> Send for McpCompactCoverageDigest<'a>
impl<'a> Sync for McpCompactCoverageDigest<'a>
impl<'a> Unpin for McpCompactCoverageDigest<'a>
impl<'a> UnwindSafe for McpCompactCoverageDigest<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more