Struct wiktionary_dump_parser::parser::words::Word
source · pub struct Word {
pub word: String,
pub languange_english_name: String,
pub word_type: String,
}Fields§
§word: StringThe word itself.
Multiple Words may have the same word if they are of a different language or type.
languange_english_name: StringThe english name of the language this word is from. While different languanges may contain the same words, there will be a separate word instance for each.
word_type: StringThe word type, as declared by wiktionary. While a word may have multiple types, there will be a separate word instance for each.
Auto Trait Implementations§
impl RefUnwindSafe for Word
impl Send for Word
impl Sync for Word
impl Unpin for Word
impl UnwindSafe for Word
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