pub struct NearMatchNearMiss {
pub a: UnitRef,
pub b: UnitRef,
pub estimated_jaccard: f64,
}Expand description
One size-compatible LSH proposal whose estimate fell just below the primary candidate threshold.
This is diagnostic telemetry only. It is never lifted to verification, grouping, or a primary finding.
Fields§
§a: UnitRefThe lower unit.
b: UnitRefThe higher unit.
estimated_jaccard: f64MinHash-estimated Jaccard similarity of the two shingle sets.
Trait Implementations§
Source§impl Clone for NearMatchNearMiss
impl Clone for NearMatchNearMiss
Source§fn clone(&self) -> NearMatchNearMiss
fn clone(&self) -> NearMatchNearMiss
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 moreimpl Copy for NearMatchNearMiss
Source§impl Debug for NearMatchNearMiss
impl Debug for NearMatchNearMiss
Source§impl PartialEq for NearMatchNearMiss
impl PartialEq for NearMatchNearMiss
impl StructuralPartialEq for NearMatchNearMiss
Auto Trait Implementations§
impl Freeze for NearMatchNearMiss
impl RefUnwindSafe for NearMatchNearMiss
impl Send for NearMatchNearMiss
impl Sync for NearMatchNearMiss
impl Unpin for NearMatchNearMiss
impl UnsafeUnpin for NearMatchNearMiss
impl UnwindSafe for NearMatchNearMiss
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