pub struct CompletenessReport {
pub matches_checked: usize,
pub missing: BTreeSet<usize>,
}Expand description
Validation outcome of Collection::completeness_errors.
Fields§
§matches_checked: usizeTotal candidate matches checked across all alive VTs.
missing: BTreeSet<usize>VT ids whose witness produces a junction VT that the collection doesn’t contain. Empty ⇒ the collection is at its claimed fixed point.
Implementations§
Source§impl CompletenessReport
impl CompletenessReport
pub fn is_complete(&self) -> bool
Auto Trait Implementations§
impl Freeze for CompletenessReport
impl RefUnwindSafe for CompletenessReport
impl Send for CompletenessReport
impl Sync for CompletenessReport
impl Unpin for CompletenessReport
impl UnsafeUnpin for CompletenessReport
impl UnwindSafe for CompletenessReport
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