pub enum VocabularyQuantifier {
KeyStroke(NonZeroUsize),
Vocabulary(NonZeroUsize),
}Expand description
A vocabulary quantifier for constructing query.
Variants§
KeyStroke(NonZeroUsize)
Vocabularies are selected to meet key stroke count.
Vocabulary(NonZeroUsize)
Vocabularies are selected to meet vocabulary count.
Trait Implementations§
Source§impl Clone for VocabularyQuantifier
impl Clone for VocabularyQuantifier
Source§fn clone(&self) -> VocabularyQuantifier
fn clone(&self) -> VocabularyQuantifier
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 VocabularyQuantifier
impl Debug for VocabularyQuantifier
Source§impl Hash for VocabularyQuantifier
impl Hash for VocabularyQuantifier
Source§impl PartialEq for VocabularyQuantifier
impl PartialEq for VocabularyQuantifier
impl Eq for VocabularyQuantifier
impl StructuralPartialEq for VocabularyQuantifier
Auto Trait Implementations§
impl Freeze for VocabularyQuantifier
impl RefUnwindSafe for VocabularyQuantifier
impl Send for VocabularyQuantifier
impl Sync for VocabularyQuantifier
impl Unpin for VocabularyQuantifier
impl UnwindSafe for VocabularyQuantifier
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