pub struct PairRecord {
pub run_id: String,
pub record_key_a: String,
pub source_a: Option<String>,
pub record_key_b: String,
pub source_b: Option<String>,
pub match_probability: f32,
pub predicted_match: bool,
}Expand description
A single scored pair as written to the NDJSON pairs file.
Fields§
§run_id: String§record_key_a: String§source_a: Option<String>§record_key_b: String§source_b: Option<String>§match_probability: f32§predicted_match: boolTrait Implementations§
Source§impl Clone for PairRecord
impl Clone for PairRecord
Source§fn clone(&self) -> PairRecord
fn clone(&self) -> PairRecord
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 PairRecord
impl Debug for PairRecord
Auto Trait Implementations§
impl Freeze for PairRecord
impl RefUnwindSafe for PairRecord
impl Send for PairRecord
impl Sync for PairRecord
impl Unpin for PairRecord
impl UnsafeUnpin for PairRecord
impl UnwindSafe for PairRecord
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