pub struct Dictionary {
pub adjectives: &'static [&'static str],
pub nouns: &'static [&'static str],
pub verbs: &'static [&'static str],
pub adverbs: &'static [&'static str],
pub prepositions: &'static [&'static str],
pub stats: DictionaryStats,
}Expand description
All word collections grouped by type
Fields§
§adjectives: &'static [&'static str]§nouns: &'static [&'static str]§verbs: &'static [&'static str]§adverbs: &'static [&'static str]§prepositions: &'static [&'static str]§stats: DictionaryStatsImplementations§
Source§impl Dictionary
impl Dictionary
Trait Implementations§
Source§impl Clone for Dictionary
impl Clone for Dictionary
Source§fn clone(&self) -> Dictionary
fn clone(&self) -> Dictionary
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 Dictionary
impl Debug for Dictionary
Auto Trait Implementations§
impl Freeze for Dictionary
impl RefUnwindSafe for Dictionary
impl Send for Dictionary
impl Sync for Dictionary
impl Unpin for Dictionary
impl UnwindSafe for Dictionary
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