pub struct TypeBreakdown {
pub entity_type: String,
pub total: usize,
pub found: usize,
pub id_correct: usize,
pub confidence_ok: usize,
pub precision: f64,
pub recall: f64,
pub f1: f64,
}Expand description
Per-type breakdown.
Fields§
§entity_type: String§total: usize§found: usize§id_correct: usize§confidence_ok: usize§precision: f64§recall: f64§f1: f64Trait Implementations§
Source§impl Debug for TypeBreakdown
impl Debug for TypeBreakdown
Auto Trait Implementations§
impl Freeze for TypeBreakdown
impl RefUnwindSafe for TypeBreakdown
impl Send for TypeBreakdown
impl Sync for TypeBreakdown
impl Unpin for TypeBreakdown
impl UnsafeUnpin for TypeBreakdown
impl UnwindSafe for TypeBreakdown
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