pub struct DictionaryStats {
pub adjectives: usize,
pub nouns: usize,
pub verbs: usize,
pub adverbs: usize,
pub prepositions: usize,
}Expand description
Dictionary statistics for combination calculations
Fields§
§adjectives: usize§nouns: usize§verbs: usize§adverbs: usize§prepositions: usizeImplementations§
Trait Implementations§
Source§impl Clone for DictionaryStats
impl Clone for DictionaryStats
Source§fn clone(&self) -> DictionaryStats
fn clone(&self) -> DictionaryStats
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 DictionaryStats
impl Debug for DictionaryStats
impl Copy for DictionaryStats
Auto Trait Implementations§
impl Freeze for DictionaryStats
impl RefUnwindSafe for DictionaryStats
impl Send for DictionaryStats
impl Sync for DictionaryStats
impl Unpin for DictionaryStats
impl UnwindSafe for DictionaryStats
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