pub struct DiffResult {Show 22 fields
pub name_a: String,
pub name_b: String,
pub findings_a: usize,
pub findings_b: usize,
pub only_in_a: Vec<FindingSummary>,
pub only_in_b: Vec<FindingSummary>,
pub only_in_a_reviews: Vec<ReviewSummary>,
pub only_in_b_reviews: Vec<ReviewSummary>,
pub only_in_a_dependencies: Vec<DependencySummary>,
pub only_in_b_dependencies: Vec<DependencySummary>,
pub semantic_pairs: Vec<SemanticPair>,
pub field_changes: Vec<FieldChange>,
pub confidence_changes: Vec<ConfidenceChange>,
pub new_contradictions: Vec<ContradictionSummary>,
pub entities_only_in_a: Vec<String>,
pub entities_only_in_b: Vec<String>,
pub projections: ProjectionDiff,
pub proposal_state: ProposalStateDiff,
pub event_log: EventLogDiff,
pub proof_state: ProofStateDiff,
pub review_impacts: Vec<ReviewImpact>,
pub stats_comparison: StatsComparison,
}Expand description
Result of comparing two frontiers.
Fields§
§name_a: String§name_b: String§findings_a: usize§findings_b: usize§only_in_a: Vec<FindingSummary>§only_in_b: Vec<FindingSummary>§only_in_a_reviews: Vec<ReviewSummary>§only_in_b_reviews: Vec<ReviewSummary>§only_in_a_dependencies: Vec<DependencySummary>§only_in_b_dependencies: Vec<DependencySummary>§semantic_pairs: Vec<SemanticPair>§field_changes: Vec<FieldChange>§confidence_changes: Vec<ConfidenceChange>§new_contradictions: Vec<ContradictionSummary>§entities_only_in_a: Vec<String>§entities_only_in_b: Vec<String>§projections: ProjectionDiff§proposal_state: ProposalStateDiff§event_log: EventLogDiff§proof_state: ProofStateDiff§review_impacts: Vec<ReviewImpact>§stats_comparison: StatsComparisonTrait Implementations§
Source§impl Debug for DiffResult
impl Debug for DiffResult
Auto Trait Implementations§
impl Freeze for DiffResult
impl RefUnwindSafe for DiffResult
impl Send for DiffResult
impl Sync for DiffResult
impl Unpin for DiffResult
impl UnsafeUnpin for DiffResult
impl UnwindSafe for DiffResult
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