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

pub struct BooleanQuery { /* fields omitted */ }

The boolean query combines a set of queries

The documents matched by the boolean query are those which

Methods

impl BooleanQuery
[src]

[src]

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

Trait Implementations

impl Debug for BooleanQuery
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl Query for BooleanQuery
[src]

[src]

Used to make it possible to cast Box into a specific type. This is mostly useful for unit tests. Read more

[src]

Create the weight associated to a query. Read more

[src]

Search works as follows : Read more