Enum tantivy_query_grammar::Occur
source · [−]pub enum Occur {
Should,
Must,
MustNot,
}
Expand description
Defines whether a term in a query must be present, should be present or must be not present.
Variants
Should
For a given document to be considered for scoring, at least one of the document with the Should or the Must Occur constraint must be within the document.
Must
Document without the term are excluded from the search.
MustNot
Document that contain the term are excluded from the search.
Implementations
Trait Implementations
impl Copy for Occur
impl Eq for Occur
impl StructuralEq for Occur
impl StructuralPartialEq for Occur
Auto Trait Implementations
impl RefUnwindSafe for Occur
impl Send for Occur
impl Sync for Occur
impl Unpin for Occur
impl UnwindSafe for Occur
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more