pub struct NearMatchSet {
pub pairs: Vec<NearMatchPair>,
pub near_misses: Vec<NearMatchNearMiss>,
pub stats: NearMatchStats,
}Expand description
The near-match stage’s output: candidate unit pairs plus funnel statistics.
Fields§
§pairs: Vec<NearMatchPair>Candidate pairs, deterministically ordered by (a, b).
near_misses: Vec<NearMatchNearMiss>Bounded diagnostic proposals immediately below the estimate threshold,
deterministically ordered by (a, b).
stats: NearMatchStatsWhat the stage saw and dropped.
Trait Implementations§
Source§impl Clone for NearMatchSet
impl Clone for NearMatchSet
Source§fn clone(&self) -> NearMatchSet
fn clone(&self) -> NearMatchSet
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 NearMatchSet
impl Debug for NearMatchSet
Source§impl PartialEq for NearMatchSet
impl PartialEq for NearMatchSet
impl StructuralPartialEq for NearMatchSet
Auto Trait Implementations§
impl Freeze for NearMatchSet
impl RefUnwindSafe for NearMatchSet
impl Send for NearMatchSet
impl Sync for NearMatchSet
impl Unpin for NearMatchSet
impl UnsafeUnpin for NearMatchSet
impl UnwindSafe for NearMatchSet
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