Enum elasticsearch_dsl::search::queries::params::RangeRelation [−][src]
pub enum RangeRelation {
Intersects,
Contains,
Within,
}
Expand description
Indicates how the range query matches values for range fields.
Variants
Intersects
Matches documents with a range field value that intersects the query’s range.
Contains
Matches documents with a range field value that entirely contains the query’s range.
Within
Matches documents with a range field value entirely within the query’s range.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RangeRelation
impl Send for RangeRelation
impl Sync for RangeRelation
impl Unpin for RangeRelation
impl UnwindSafe for RangeRelation
Blanket Implementations
Mutably borrows from an owned value. Read more