pub struct WordStats {
pub total: usize,
pub unique: usize,
}Expand description
Aggregate counts derived from text.
Fields§
§total: usizeTotal number of normalized words.
unique: usizeTotal number of distinct normalized words.
Implementations§
Trait Implementations§
impl Copy for WordStats
impl Eq for WordStats
impl StructuralPartialEq for WordStats
Auto Trait Implementations§
impl Freeze for WordStats
impl RefUnwindSafe for WordStats
impl Send for WordStats
impl Sync for WordStats
impl Unpin for WordStats
impl UnsafeUnpin for WordStats
impl UnwindSafe for WordStats
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