pub struct DocumentStats {
pub signal_count: usize,
pub track_count: usize,
pub identity_count: usize,
pub linked_track_count: usize,
pub untracked_count: usize,
pub avg_track_size: f32,
pub singleton_count: usize,
pub avg_confidence: f32,
pub negated_count: usize,
pub symbolic_count: usize,
pub iconic_count: usize,
pub hybrid_count: usize,
}Expand description
Statistics about a grounded document.
Fields§
§signal_count: usizeTotal number of signals
track_count: usizeTotal number of tracks
identity_count: usizeTotal number of identities
linked_track_count: usizeNumber of tracks linked to identities
untracked_count: usizeNumber of signals not in any track
avg_track_size: f32Average signals per track
singleton_count: usizeNumber of singleton tracks (single mention)
avg_confidence: f32Average signal confidence
negated_count: usizeNumber of negated signals
symbolic_count: usizeNumber of symbolic (text) signals
iconic_count: usizeNumber of iconic (visual) signals
hybrid_count: usizeNumber of hybrid signals
Trait Implementations§
Source§impl Clone for DocumentStats
impl Clone for DocumentStats
Source§fn clone(&self) -> DocumentStats
fn clone(&self) -> DocumentStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DocumentStats
impl Debug for DocumentStats
Source§impl Default for DocumentStats
impl Default for DocumentStats
Source§fn default() -> DocumentStats
fn default() -> DocumentStats
Returns the “default value” for a type. Read more
Source§impl Display for DocumentStats
impl Display for DocumentStats
impl Copy for DocumentStats
Auto Trait Implementations§
impl Freeze for DocumentStats
impl RefUnwindSafe for DocumentStats
impl Send for DocumentStats
impl Sync for DocumentStats
impl Unpin for DocumentStats
impl UnsafeUnpin for DocumentStats
impl UnwindSafe for DocumentStats
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