pub struct AnalysisOutput<P: ParseDiagnostic> {
pub result: AnalysisResult,
pub diagnostics: AnalysisDiagnostics<P>,
}Expand description
Full output from an analysis run, including both the scored results
and process diagnostics (surfaced by --verbose).
Generic over P: ParseDiagnostic so AnalysisDiagnostics<P> can carry
the adapter-specific parse-diagnostic shape (LCOV’s
LcovParseDiagnostic, future Istanbul adapter’s diagnostic, etc.) per
ADR D9.
Fields§
§result: AnalysisResult§diagnostics: AnalysisDiagnostics<P>Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for AnalysisOutput<P>
impl<P> RefUnwindSafe for AnalysisOutput<P>where
P: RefUnwindSafe,
impl<P> Send for AnalysisOutput<P>where
P: Send,
impl<P> Sync for AnalysisOutput<P>where
P: Sync,
impl<P> Unpin for AnalysisOutput<P>where
P: Unpin,
impl<P> UnsafeUnpin for AnalysisOutput<P>
impl<P> UnwindSafe for AnalysisOutput<P>where
P: UnwindSafe,
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