pub struct EntityResolutionMetrics {
pub entities: Vec<Option<Value>>,
pub errors: Vec<String>,
pub duration_us: u64,
pub success: bool,
}Expand description
Result of batch entity resolution with timing information
Fields§
§entities: Vec<Option<Value>>Resolved entities in same order as input representations
errors: Vec<String>Any errors encountered during resolution
duration_us: u64Duration of resolution in microseconds
success: boolWhether resolution succeeded (no errors)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntityResolutionMetrics
impl RefUnwindSafe for EntityResolutionMetrics
impl Send for EntityResolutionMetrics
impl Sync for EntityResolutionMetrics
impl Unpin for EntityResolutionMetrics
impl UnsafeUnpin for EntityResolutionMetrics
impl UnwindSafe for EntityResolutionMetrics
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