Struct harper_core::FullDictionary
source · pub struct FullDictionary { /* private fields */ }
Expand description
A full, fat dictionary. All of the elements are stored in-memory.
Implementations§
source§impl FullDictionary
impl FullDictionary
pub fn new() -> Self
sourcepub fn create_from_curated() -> Self
pub fn create_from_curated() -> Self
Create a dictionary from the curated Hunspell dictionary included in the Harper binary.
sourcepub fn append_words(&mut self, words: &[&[char]])
pub fn append_words(&mut self, words: &[&[char]])
Appends words to the dictionary. It is significantly faster to append many words with one call than many distinct calls to this function.
Trait Implementations§
source§impl Clone for FullDictionary
impl Clone for FullDictionary
source§fn clone(&self) -> FullDictionary
fn clone(&self) -> FullDictionary
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 FullDictionary
impl Debug for FullDictionary
source§impl Default for FullDictionary
impl Default for FullDictionary
source§impl Dictionary for FullDictionary
impl Dictionary for FullDictionary
Auto Trait Implementations§
impl RefUnwindSafe for FullDictionary
impl Send for FullDictionary
impl Sync for FullDictionary
impl Unpin for FullDictionary
impl UnwindSafe for FullDictionary
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