Struct elasticsearch_dsl::search::queries::term_level::PrefixQuery
source · [−]pub struct PrefixQuery { /* private fields */ }
Expand description
Returns documents that contain a specific prefix in a provided field.
To create a prefix query with numeric values:
Query::prefix("test", 123);
To create a prefix query with string values and optional fields:
Query::prefix("test", "username")
.boost(2)
.name("test");
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-prefix-query.html
Implementations
sourceimpl PrefixQuery
impl PrefixQuery
sourcepub fn rewrite(self, rewrite: Rewrite) -> Self
pub fn rewrite(self, rewrite: Rewrite) -> Self
Method used to rewrite the query. For valid values and more information, see the rewrite parameter.
sourcepub fn case_insensitive(self, case_insensitive: bool) -> Self
pub fn case_insensitive(self, case_insensitive: bool) -> Self
Allows ASCII case insensitive matching of the value with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.
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 PrefixQuery
impl Clone for PrefixQuery
sourcefn clone(&self) -> PrefixQuery
fn clone(&self) -> PrefixQuery
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 PrefixQuery
impl Debug for PrefixQuery
sourceimpl From<PrefixQuery> for Query
impl From<PrefixQuery> for Query
sourcefn from(q: PrefixQuery) -> Self
fn from(q: PrefixQuery) -> Self
Converts to this type from the input type.
sourceimpl From<PrefixQuery> for Option<Query>
impl From<PrefixQuery> for Option<Query>
sourcefn from(q: PrefixQuery) -> Self
fn from(q: PrefixQuery) -> Self
Converts to this type from the input type.
sourceimpl From<PrefixQuery> for Queries
impl From<PrefixQuery> for Queries
sourcefn from(q: PrefixQuery) -> Self
fn from(q: PrefixQuery) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<PrefixQuery> for PrefixQuery
impl PartialEq<PrefixQuery> for PrefixQuery
sourcefn eq(&self, other: &PrefixQuery) -> bool
fn eq(&self, other: &PrefixQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PrefixQuery) -> bool
fn ne(&self, other: &PrefixQuery) -> bool
This method tests for !=
.
sourceimpl PartialEq<PrefixQuery> for Query
impl PartialEq<PrefixQuery> for Query
sourceimpl PartialEq<Query> for PrefixQuery
impl PartialEq<Query> for PrefixQuery
sourceimpl Serialize for PrefixQuery
impl Serialize for PrefixQuery
impl StructuralPartialEq for PrefixQuery
Auto Trait Implementations
impl RefUnwindSafe for PrefixQuery
impl Send for PrefixQuery
impl Sync for PrefixQuery
impl Unpin for PrefixQuery
impl UnwindSafe for PrefixQuery
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