pub struct MergeReport {
pub quarantined: Vec<MergeFlag>,
pub single_source: Vec<MergeFlag>,
pub position_outliers: Vec<MergeFlag>,
}Expand description
Audit trail for a merge.
Fields§
§quarantined: Vec<MergeFlag>Cells where two or more sources disagreed beyond tolerance with no
agreeing subset of min_agree - omitted from the merged product.
single_source: Vec<MergeFlag>Cells carried from a single source (no cross-check was possible).
position_outliers: Vec<MergeFlag>Cells accepted by consensus where one or more sources were rejected as position outliers.
Trait Implementations§
Source§impl Clone for MergeReport
impl Clone for MergeReport
Source§fn clone(&self) -> MergeReport
fn clone(&self) -> MergeReport
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 MergeReport
impl Debug for MergeReport
Source§impl Default for MergeReport
impl Default for MergeReport
Source§fn default() -> MergeReport
fn default() -> MergeReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for MergeReport
impl PartialEq for MergeReport
Source§fn eq(&self, other: &MergeReport) -> bool
fn eq(&self, other: &MergeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeReport
Auto Trait Implementations§
impl Freeze for MergeReport
impl RefUnwindSafe for MergeReport
impl Send for MergeReport
impl Sync for MergeReport
impl Unpin for MergeReport
impl UnsafeUnpin for MergeReport
impl UnwindSafe for MergeReport
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.