Struct elasticsearch_dsl::search::queries::span::SpanWithinQuery
source · pub struct SpanWithinQuery { /* private fields */ }
Expand description
Returns matches which are enclosed inside another span query. The span within query maps to
Lucene SpanWithinQuery
.
The big
and little
clauses can be any span type query. Matching spans from little
that
are enclosed within big
are returned.
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-span-within-query.html
Trait Implementations§
source§impl Clone for SpanWithinQuery
impl Clone for SpanWithinQuery
source§fn clone(&self) -> SpanWithinQuery
fn clone(&self) -> SpanWithinQuery
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 SpanWithinQuery
impl Debug for SpanWithinQuery
source§impl From<SpanWithinQuery> for Option<Query>
impl From<SpanWithinQuery> for Option<Query>
source§fn from(q: SpanWithinQuery) -> Self
fn from(q: SpanWithinQuery) -> Self
Converts to this type from the input type.
source§impl From<SpanWithinQuery> for Option<SpanQuery>
impl From<SpanWithinQuery> for Option<SpanQuery>
source§fn from(q: SpanWithinQuery) -> Self
fn from(q: SpanWithinQuery) -> Self
Converts to this type from the input type.
source§impl From<SpanWithinQuery> for Query
impl From<SpanWithinQuery> for Query
source§fn from(q: SpanWithinQuery) -> Self
fn from(q: SpanWithinQuery) -> Self
Converts to this type from the input type.
source§impl From<SpanWithinQuery> for SpanQuery
impl From<SpanWithinQuery> for SpanQuery
source§fn from(q: SpanWithinQuery) -> Self
fn from(q: SpanWithinQuery) -> Self
Converts to this type from the input type.
source§impl IntoIterator for SpanWithinQuery
impl IntoIterator for SpanWithinQuery
§type Item = SpanWithinQuery
type Item = SpanWithinQuery
The type of the elements being iterated over.
§type IntoIter = IntoIter<<SpanWithinQuery as IntoIterator>::Item>
type IntoIter = IntoIter<<SpanWithinQuery as IntoIterator>::Item>
Which kind of iterator are we turning this into?