pub struct AnalysisFinding {
pub kind: AnalysisFindingKind,
pub status: AnalysisStatus,
pub summary: String,
pub nodes: Vec<AnalysisNode>,
pub metric: Option<u64>,
pub evidence: Option<AnalysisRelationEvidence>,
}Expand description
One deterministic bounded analysis finding.
Fields§
§kind: AnalysisFindingKindClosed finding family.
status: AnalysisStatusEvidence disposition.
summary: StringConcise interpretation that does not overclaim semantic proof.
nodes: Vec<AnalysisNode>Typed reusable nodes with purpose, coverage, and next-call routing.
metric: Option<u64>Optional exact structural metric, such as degree or declaration span.
evidence: Option<AnalysisRelationEvidence>Exact relation evidence when this finding is caused by a resolution gap.
Trait Implementations§
Source§impl Clone for AnalysisFinding
impl Clone for AnalysisFinding
Source§fn clone(&self) -> AnalysisFinding
fn clone(&self) -> AnalysisFinding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnalysisFinding
impl Debug for AnalysisFinding
Source§impl PartialEq for AnalysisFinding
impl PartialEq for AnalysisFinding
Source§impl Serialize for AnalysisFinding
impl Serialize for AnalysisFinding
impl Eq for AnalysisFinding
impl StructuralPartialEq for AnalysisFinding
Auto Trait Implementations§
impl Freeze for AnalysisFinding
impl RefUnwindSafe for AnalysisFinding
impl Send for AnalysisFinding
impl Sync for AnalysisFinding
impl Unpin for AnalysisFinding
impl UnwindSafe for AnalysisFinding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more