pub struct RankFeatureLogarithmQuery { /* private fields */ }
Expand description
Boosts the relevance score of documents based on the numeric value of a rank_feature
or
rank_features
field.
To create a rank feature query:
Query::rank_feature("test");
To apply mathematical functions:
Query::rank_feature("test").saturation();
Query::rank_feature("test").saturation().pivot(2.2);
Query::rank_feature("test").logarithm(3.0);
Query::rank_feature("test").sigmoid(1.0, 2.0);
Query::rank_feature("test").linear();
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-rank-feature-query.html
Implementations§
source§impl RankFeatureLogarithmQuery
impl RankFeatureLogarithmQuery
pub fn serialize<__S>(
__self: &RankFeatureLogarithmQuery,
__serializer: __S
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
source§impl RankFeatureLogarithmQuery
impl RankFeatureLogarithmQuery
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 RankFeatureLogarithmQuery
impl Clone for RankFeatureLogarithmQuery
source§fn clone(&self) -> RankFeatureLogarithmQuery
fn clone(&self) -> RankFeatureLogarithmQuery
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 RankFeatureLogarithmQuery
impl Debug for RankFeatureLogarithmQuery
source§impl From<RankFeatureLogarithmQuery> for Option<Query>
impl From<RankFeatureLogarithmQuery> for Option<Query>
source§fn from(q: RankFeatureLogarithmQuery) -> Self
fn from(q: RankFeatureLogarithmQuery) -> Self
Converts to this type from the input type.
source§impl From<RankFeatureLogarithmQuery> for Query
impl From<RankFeatureLogarithmQuery> for Query
source§fn from(q: RankFeatureLogarithmQuery) -> Self
fn from(q: RankFeatureLogarithmQuery) -> Self
Converts to this type from the input type.
source§impl IntoIterator for RankFeatureLogarithmQuery
impl IntoIterator for RankFeatureLogarithmQuery
§type Item = RankFeatureLogarithmQuery
type Item = RankFeatureLogarithmQuery
The type of the elements being iterated over.
§type IntoIter = IntoIter<<RankFeatureLogarithmQuery as IntoIterator>::Item>
type IntoIter = IntoIter<<RankFeatureLogarithmQuery as IntoIterator>::Item>
Which kind of iterator are we turning this into?
source§impl PartialEq<Query> for RankFeatureLogarithmQuery
impl PartialEq<Query> for RankFeatureLogarithmQuery
source§impl PartialEq<RankFeatureLogarithmQuery> for Query
impl PartialEq<RankFeatureLogarithmQuery> for Query
source§fn eq(&self, other: &RankFeatureLogarithmQuery) -> bool
fn eq(&self, other: &RankFeatureLogarithmQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq for RankFeatureLogarithmQuery
impl PartialEq for RankFeatureLogarithmQuery
source§fn eq(&self, other: &RankFeatureLogarithmQuery) -> bool
fn eq(&self, other: &RankFeatureLogarithmQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RankFeatureLogarithmQuery
Auto Trait Implementations§
impl RefUnwindSafe for RankFeatureLogarithmQuery
impl Send for RankFeatureLogarithmQuery
impl Sync for RankFeatureLogarithmQuery
impl Unpin for RankFeatureLogarithmQuery
impl UnwindSafe for RankFeatureLogarithmQuery
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more