pub struct EntityMatchDetail {
pub name: String,
pub entity_type: String,
pub expected_source: String,
pub expected_id: String,
pub found_type: Option<String>,
pub resolved_source: Option<String>,
pub resolved_id: Option<String>,
pub resolved_confidence: f64,
pub type_match: bool,
pub id_match: bool,
pub confidence_ok: bool,
}Expand description
Per-entity match result.
Fields§
§name: String§entity_type: String§expected_source: String§expected_id: String§found_type: Option<String>§resolved_source: Option<String>§resolved_id: Option<String>§resolved_confidence: f64§type_match: bool§id_match: bool§confidence_ok: boolTrait Implementations§
Source§impl Debug for EntityMatchDetail
impl Debug for EntityMatchDetail
Auto Trait Implementations§
impl Freeze for EntityMatchDetail
impl RefUnwindSafe for EntityMatchDetail
impl Send for EntityMatchDetail
impl Sync for EntityMatchDetail
impl Unpin for EntityMatchDetail
impl UnsafeUnpin for EntityMatchDetail
impl UnwindSafe for EntityMatchDetail
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