pub enum DictionaryFormat {
Hunspell {
aff: Downloadable,
dic: Downloadable,
},
Wordlist(Downloadable),
}
Expand description
Dictionary source files
Variants§
Hunspell
The Hunspell dictionary format
Wordlist(Downloadable)
A list of words with no special meanings. One word per line.
Trait Implementations§
Source§impl Clone for DictionaryFormat
impl Clone for DictionaryFormat
Source§fn clone(&self) -> DictionaryFormat
fn clone(&self) -> DictionaryFormat
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 DictionaryFormat
impl Debug for DictionaryFormat
Source§impl<'de> Deserialize<'de> for DictionaryFormat
impl<'de> Deserialize<'de> for DictionaryFormat
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
Auto Trait Implementations§
impl Freeze for DictionaryFormat
impl RefUnwindSafe for DictionaryFormat
impl Send for DictionaryFormat
impl Sync for DictionaryFormat
impl Unpin for DictionaryFormat
impl UnwindSafe for DictionaryFormat
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