[][src]Struct tantivy::query::BooleanQuery

pub struct BooleanQuery { /* fields omitted */ }

The boolean query combines a set of queries

The documents matched by the boolean query are those which

  • match all of the sub queries associated with the Must occurence
  • match none of the sub queries associated with the MustNot occurence.
  • match at least one of the subqueries that is not a MustNot occurence.

Methods

impl BooleanQuery[src]

pub fn new_multiterms_query(terms: Vec<Term>) -> BooleanQuery[src]

Helper method to create a boolean query matching a given list of terms. The resulting query is a disjunction of the terms.

pub fn clauses(&self) -> &[(Occur, Box<dyn Query>)][src]

Deconstructed view of the clauses making up this query.

Trait Implementations

impl Query for BooleanQuery[src]

impl From<Vec<(Occur, Box<dyn Query + 'static>)>> for BooleanQuery[src]

impl Clone for BooleanQuery[src]

impl Debug for BooleanQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> Downcast for T where
    T: Any
[src]