Enum elasticsearch_dsl::search::queries::params::Operator [−][src]
pub enum Operator {
Or,
And,
}
Expand description
Boolean logic used to interpret text in the query
value
Variants
Or
For example, a query
value of capital of Hungary
is interpreted as
capital OR of OR Hungary
.
And
For example, a query
value of capital of Hungary
is interpreted as
capital AND of AND Hungary
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Operator
impl UnwindSafe for Operator
Blanket Implementations
Mutably borrows from an owned value. Read more