pub struct StructuralNearMiss {
pub a: usize,
pub b: usize,
pub estimated_jaccard: f64,
}Expand description
One LSH-proposed unit pair that passed the size gate but landed inside the bounded estimate band immediately below the primary near-match threshold.
This is run-scoped diagnostic telemetry, not a similarity edge. It never reaches verification, grouping, group membership, or primary findings.
Fields§
§a: usizeIndex of the lower unit in StructuralReport::units.
b: usizeIndex of the higher unit in StructuralReport::units.
estimated_jaccard: f64MinHash-estimated Jaccard similarity that missed the primary gate.
Trait Implementations§
Source§impl Clone for StructuralNearMiss
impl Clone for StructuralNearMiss
Source§fn clone(&self) -> StructuralNearMiss
fn clone(&self) -> StructuralNearMiss
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 StructuralNearMiss
Source§impl Debug for StructuralNearMiss
impl Debug for StructuralNearMiss
Source§impl PartialEq for StructuralNearMiss
impl PartialEq for StructuralNearMiss
impl StructuralPartialEq for StructuralNearMiss
Auto Trait Implementations§
impl Freeze for StructuralNearMiss
impl RefUnwindSafe for StructuralNearMiss
impl Send for StructuralNearMiss
impl Sync for StructuralNearMiss
impl Unpin for StructuralNearMiss
impl UnsafeUnpin for StructuralNearMiss
impl UnwindSafe for StructuralNearMiss
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