pub struct EntitySummaryStatistics { /* private fields */ }Expand description
A struct representing aggregated result of typing for each entities.
Implementations§
Source§impl EntitySummaryStatistics
impl EntitySummaryStatistics
Sourcepub fn whole_count(&self) -> usize
pub fn whole_count(&self) -> usize
Returns count how many entities are target of typing
Sourcepub fn completely_correct_count(&self) -> usize
pub fn completely_correct_count(&self) -> usize
Returns count how many entities are finished typing without wrong types
Sourcepub fn wrong_count(&self) -> usize
pub fn wrong_count(&self) -> usize
Returns count how many wrong entity is observed This count includes duplication, so count may be above 1 when typed wrong multiple times
Trait Implementations§
Source§impl Clone for EntitySummaryStatistics
impl Clone for EntitySummaryStatistics
Source§fn clone(&self) -> EntitySummaryStatistics
fn clone(&self) -> EntitySummaryStatistics
Returns a copy 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 EntitySummaryStatistics
impl Debug for EntitySummaryStatistics
Source§impl<'de> Deserialize<'de> for EntitySummaryStatistics
impl<'de> Deserialize<'de> for EntitySummaryStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for EntitySummaryStatistics
impl Hash for EntitySummaryStatistics
Source§impl PartialEq for EntitySummaryStatistics
impl PartialEq for EntitySummaryStatistics
Source§impl Serialize for EntitySummaryStatistics
impl Serialize for EntitySummaryStatistics
impl Eq for EntitySummaryStatistics
impl StructuralPartialEq for EntitySummaryStatistics
Auto Trait Implementations§
impl Freeze for EntitySummaryStatistics
impl RefUnwindSafe for EntitySummaryStatistics
impl Send for EntitySummaryStatistics
impl Sync for EntitySummaryStatistics
impl Unpin for EntitySummaryStatistics
impl UnwindSafe for EntitySummaryStatistics
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