Enum elasticsearch_dsl::search::queries::span::MultiTermQuery
source · pub enum MultiTermQuery {
Prefix(PrefixQuery),
Regexp(RegexpQuery),
Wildcard(WildcardQuery),
Range(RangeQuery),
Fuzzy(FuzzyQuery),
}
Expand description
A container enum for supported Elasticsearch query types
Variants§
Prefix(PrefixQuery)
Regexp(RegexpQuery)
Wildcard(WildcardQuery)
Range(RangeQuery)
Fuzzy(FuzzyQuery)
Trait Implementations§
source§impl Clone for MultiTermQuery
impl Clone for MultiTermQuery
source§fn clone(&self) -> MultiTermQuery
fn clone(&self) -> MultiTermQuery
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 MultiTermQuery
impl Debug for MultiTermQuery
source§impl From<FuzzyQuery> for MultiTermQuery
impl From<FuzzyQuery> for MultiTermQuery
source§fn from(q: FuzzyQuery) -> Self
fn from(q: FuzzyQuery) -> Self
Converts to this type from the input type.
source§impl From<PrefixQuery> for MultiTermQuery
impl From<PrefixQuery> for MultiTermQuery
source§fn from(q: PrefixQuery) -> Self
fn from(q: PrefixQuery) -> Self
Converts to this type from the input type.
source§impl From<RangeQuery> for MultiTermQuery
impl From<RangeQuery> for MultiTermQuery
source§fn from(q: RangeQuery) -> Self
fn from(q: RangeQuery) -> Self
Converts to this type from the input type.
source§impl From<RegexpQuery> for MultiTermQuery
impl From<RegexpQuery> for MultiTermQuery
source§fn from(q: RegexpQuery) -> Self
fn from(q: RegexpQuery) -> Self
Converts to this type from the input type.
source§impl From<WildcardQuery> for MultiTermQuery
impl From<WildcardQuery> for MultiTermQuery
source§fn from(q: WildcardQuery) -> Self
fn from(q: WildcardQuery) -> Self
Converts to this type from the input type.
source§impl IntoIterator for MultiTermQuery
impl IntoIterator for MultiTermQuery
§type Item = MultiTermQuery
type Item = MultiTermQuery
The type of the elements being iterated over.
§type IntoIter = IntoIter<<MultiTermQuery as IntoIterator>::Item>
type IntoIter = IntoIter<<MultiTermQuery as IntoIterator>::Item>
Which kind of iterator are we turning this into?