pub struct ReconcileSummary {
pub reconciled: usize,
pub matches: usize,
pub conflicts: usize,
pub missing: usize,
pub unknown: usize,
}Expand description
Rollup counts across all reconciled targets — the four VerifyOutcome
classes plus the total, so a caller branches on conflicts/missing without
re-tallying ReconcileReport::targets.
Fields§
§reconciled: usizeTotal targets reconciled (= matches + conflicts + missing + unknown).
matches: usizeTargets whose receipt matches registry state.
conflicts: usizeTargets present remotely but with a differing digest. Reachable only when
the registry exposes a remote digest to compare against the receipt’s; the
current RegistryQuery port lists versions
only, so in production a digest-level conflict is not yet observable (a
present version resolves to matches, never a false conflicts).
missing: usizeTargets the registry does not report as published.
unknown: usizeTargets the reconcile could not be performed for.
Trait Implementations§
Source§impl Clone for ReconcileSummary
impl Clone for ReconcileSummary
Source§fn clone(&self) -> ReconcileSummary
fn clone(&self) -> ReconcileSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReconcileSummary
impl Debug for ReconcileSummary
Source§impl Default for ReconcileSummary
impl Default for ReconcileSummary
Source§fn default() -> ReconcileSummary
fn default() -> ReconcileSummary
Returns the “default value” for a type. Read more
impl Eq for ReconcileSummary
Source§impl PartialEq for ReconcileSummary
impl PartialEq for ReconcileSummary
Source§impl Serialize for ReconcileSummary
impl Serialize for ReconcileSummary
impl StructuralPartialEq for ReconcileSummary
Auto Trait Implementations§
impl Freeze for ReconcileSummary
impl RefUnwindSafe for ReconcileSummary
impl Send for ReconcileSummary
impl Sync for ReconcileSummary
impl Unpin for ReconcileSummary
impl UnsafeUnpin for ReconcileSummary
impl UnwindSafe for ReconcileSummary
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.