Struct elasticsearch_dsl::search::queries::geo::GeoShapeLookupQuery
source · [−]pub struct GeoShapeLookupQuery { /* private fields */ }
Expand description
Filter documents indexed using the geo_shape
or geo_point
type.
Requires the
geo_shape
mapping
or the
geo_point
mapping.
The geo_shape
query uses the same grid square representation as the
geo_shape
mapping to find documents that have a shape that intersects
with the query shape. It will also use the same Prefix Tree configuration
as defined for the field mapping.
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-shape-query.html
Implementations
sourceimpl GeoShapeLookupQuery
impl GeoShapeLookupQuery
sourcepub fn index<S>(self, index: S) -> Self where
S: ToString,
pub fn index<S>(self, index: S) -> Self where
S: ToString,
Name of the index where the pre-indexed shape is. Defaults to shapes
sourcepub fn path<S>(self, path: S) -> Self where
S: ToString,
pub fn path<S>(self, path: S) -> Self where
S: ToString,
The field specified as path containing the pre-indexed shape. Defaults to shape
sourcepub fn routing<S>(self, routing: S) -> Self where
S: ToString,
pub fn routing<S>(self, routing: S) -> Self where
S: ToString,
The routing of the shape document
sourcepub fn relation(self, relation: SpatialRelation) -> Self
pub fn relation(self, relation: SpatialRelation) -> Self
The geo_shape strategy mapping parameter determines which spatial relation operators may be used at search time.
sourcepub fn ignore_unmapped(self, ignore_unmapped: bool) -> Self
pub fn ignore_unmapped(self, ignore_unmapped: bool) -> Self
When set to true the ignore_unmapped
option will ignore an unmapped
field and will not match any documents for this query. This can be
useful when querying multiple indexes which might have different
mappings. When set to false
(the default value) the query will throw
an exception if the field is not mapped.
sourcepub fn boost<B>(self, boost: B) -> Self where
B: TryInto<Boost>,
pub fn boost<B>(self, boost: B) -> Self where
B: TryInto<Boost>,
Floating point number used to decrease or increase the
relevance scores
of a query. Defaults to 1.0
.
You can use the boost parameter to adjust relevance scores for searches containing two or more queries.
Boost values are relative to the default value of 1.0
.
A boost value between 0 and 1.0
decreases the relevance score.
A value greater than 1.0
increases the relevance score.
Trait Implementations
sourceimpl Clone for GeoShapeLookupQuery
impl Clone for GeoShapeLookupQuery
sourcefn clone(&self) -> GeoShapeLookupQuery
fn clone(&self) -> GeoShapeLookupQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GeoShapeLookupQuery
impl Debug for GeoShapeLookupQuery
sourceimpl From<GeoShapeLookupQuery> for Query
impl From<GeoShapeLookupQuery> for Query
sourcefn from(q: GeoShapeLookupQuery) -> Self
fn from(q: GeoShapeLookupQuery) -> Self
Converts to this type from the input type.
sourceimpl From<GeoShapeLookupQuery> for Option<Query>
impl From<GeoShapeLookupQuery> for Option<Query>
sourcefn from(q: GeoShapeLookupQuery) -> Self
fn from(q: GeoShapeLookupQuery) -> Self
Converts to this type from the input type.
sourceimpl From<GeoShapeLookupQuery> for Queries
impl From<GeoShapeLookupQuery> for Queries
sourcefn from(q: GeoShapeLookupQuery) -> Self
fn from(q: GeoShapeLookupQuery) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<GeoShapeLookupQuery> for GeoShapeLookupQuery
impl PartialEq<GeoShapeLookupQuery> for GeoShapeLookupQuery
sourcefn eq(&self, other: &GeoShapeLookupQuery) -> bool
fn eq(&self, other: &GeoShapeLookupQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GeoShapeLookupQuery) -> bool
fn ne(&self, other: &GeoShapeLookupQuery) -> bool
This method tests for !=
.
sourceimpl PartialEq<GeoShapeLookupQuery> for Query
impl PartialEq<GeoShapeLookupQuery> for Query
sourceimpl PartialEq<Query> for GeoShapeLookupQuery
impl PartialEq<Query> for GeoShapeLookupQuery
sourceimpl Serialize for GeoShapeLookupQuery
impl Serialize for GeoShapeLookupQuery
impl StructuralPartialEq for GeoShapeLookupQuery
Auto Trait Implementations
impl RefUnwindSafe for GeoShapeLookupQuery
impl Send for GeoShapeLookupQuery
impl Sync for GeoShapeLookupQuery
impl Unpin for GeoShapeLookupQuery
impl UnwindSafe for GeoShapeLookupQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more