pub struct MatchDetail {
pub gold_id: Option<String>,
pub frontier_id: String,
pub gold_text: String,
pub frontier_text: String,
pub similarity: f64,
pub entity_overlap: f64,
pub assertion_type_match: bool,
pub confidence_in_range: bool,
pub exact_id_match: bool,
}Fields§
§gold_id: Option<String>§frontier_id: String§gold_text: String§frontier_text: String§similarity: f64§entity_overlap: f64§assertion_type_match: bool§confidence_in_range: bool§exact_id_match: boolTrait Implementations§
Source§impl Debug for MatchDetail
impl Debug for MatchDetail
Auto Trait Implementations§
impl Freeze for MatchDetail
impl RefUnwindSafe for MatchDetail
impl Send for MatchDetail
impl Sync for MatchDetail
impl Unpin for MatchDetail
impl UnsafeUnpin for MatchDetail
impl UnwindSafe for MatchDetail
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