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§
Source§impl GeoShapeLookupQuery
impl GeoShapeLookupQuery
pub fn serialize<__S>(
__self: &GeoShapeLookupQuery,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl GeoShapeLookupQuery
impl GeoShapeLookupQuery
Sourcepub fn index<S>(self, index: S) -> Selfwhere
S: ToString,
pub fn index<S>(self, index: S) -> Selfwhere
S: ToString,
Name of the index where the pre-indexed shape is. Defaults to shapes
Sourcepub fn path<S>(self, path: S) -> Selfwhere
S: ToString,
pub fn path<S>(self, path: S) -> Selfwhere
S: ToString,
The field specified as path containing the pre-indexed shape. Defaults to shape
Sourcepub fn routing<S>(self, routing: S) -> Selfwhere
S: ToString,
pub fn routing<S>(self, routing: S) -> Selfwhere
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<T>(self, boost: T) -> Selfwhere
T: AsPrimitive<f32>,
pub fn boost<T>(self, boost: T) -> Selfwhere
T: AsPrimitive<f32>,
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§
Source§impl Clone for GeoShapeLookupQuery
impl Clone for GeoShapeLookupQuery
Source§fn clone(&self) -> GeoShapeLookupQuery
fn clone(&self) -> GeoShapeLookupQuery
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more