pub struct ScoredPair {
pub record_a: RecordId,
pub record_b: RecordId,
pub match_weight: f32,
pub match_probability: f32,
pub vector: ComparisonVector,
pub band: MatchBand,
}Expand description
A candidate pair annotated with its match weight, probability, and band.
Fields§
§record_a: RecordId§record_b: RecordId§match_weight: f32§match_probability: f32§vector: ComparisonVector§band: MatchBandTrait Implementations§
Source§impl Clone for ScoredPair
impl Clone for ScoredPair
Source§fn clone(&self) -> ScoredPair
fn clone(&self) -> ScoredPair
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 ScoredPair
impl Debug for ScoredPair
Source§impl<'de> Deserialize<'de> for ScoredPair
impl<'de> Deserialize<'de> for ScoredPair
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScoredPair
impl RefUnwindSafe for ScoredPair
impl Send for ScoredPair
impl Sync for ScoredPair
impl Unpin for ScoredPair
impl UnsafeUnpin for ScoredPair
impl UnwindSafe for ScoredPair
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