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