pub enum MatchType {
Exact,
Prefix,
Deinflected,
Fuzzy,
Gloss,
}Expand description
How a lookup result matched the query term.
Variants§
Exact
Prefix
Deinflected
Fuzzy
Gloss
Matched via reverse lookup in English glosses (see crate::Dict::lookup_gloss).
Trait Implementations§
impl StructuralPartialEq for MatchType
Auto Trait Implementations§
impl Freeze for MatchType
impl RefUnwindSafe for MatchType
impl Send for MatchType
impl Sync for MatchType
impl Unpin for MatchType
impl UnsafeUnpin for MatchType
impl UnwindSafe for MatchType
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