Struct elasticsearch_dsl::search::queries::term_level::WildcardQuery
source · [−]pub struct WildcardQuery { /* private fields */ }
Expand description
Returns documents that contain terms matching a wildcard pattern.
A wildcard operator is a placeholder that matches one or more characters. For example, the *
wildcard operator matches zero or more characters. You can combine wildcard operators with
other characters to create a wildcard pattern.
To create a wildcard query:
Query::wildcard("test", 123);
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-wildcard-query.html
Implementations
sourceimpl WildcardQuery
impl WildcardQuery
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 case insensitive matching of the pattern 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<T>(self, boost: T) -> Self where
T: AsPrimitive<f32>,
pub fn boost<T>(self, boost: T) -> Self where
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
sourceimpl Clone for WildcardQuery
impl Clone for WildcardQuery
sourcefn clone(&self) -> WildcardQuery
fn clone(&self) -> WildcardQuery
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 WildcardQuery
impl Debug for WildcardQuery
sourceimpl From<WildcardQuery> for Option<Query>
impl From<WildcardQuery> for Option<Query>
sourcefn from(q: WildcardQuery) -> Self
fn from(q: WildcardQuery) -> Self
Converts to this type from the input type.
sourceimpl From<WildcardQuery> for Query
impl From<WildcardQuery> for Query
sourcefn from(q: WildcardQuery) -> Self
fn from(q: WildcardQuery) -> Self
Converts to this type from the input type.
sourceimpl IntoIterator for WildcardQuery
impl IntoIterator for WildcardQuery
type Item = WildcardQuery
type Item = WildcardQuery
The type of the elements being iterated over.
type IntoIter = IntoIter<<WildcardQuery as IntoIterator>::Item>
type IntoIter = IntoIter<<WildcardQuery as IntoIterator>::Item>
Which kind of iterator are we turning this into?
sourceimpl PartialEq<Query> for WildcardQuery
impl PartialEq<Query> for WildcardQuery
sourceimpl PartialEq<WildcardQuery> for Query
impl PartialEq<WildcardQuery> for Query
sourceimpl PartialEq<WildcardQuery> for WildcardQuery
impl PartialEq<WildcardQuery> for WildcardQuery
sourcefn eq(&self, other: &WildcardQuery) -> bool
fn eq(&self, other: &WildcardQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &WildcardQuery) -> bool
fn ne(&self, other: &WildcardQuery) -> bool
This method tests for !=
.
sourceimpl Serialize for WildcardQuery
impl Serialize for WildcardQuery
impl StructuralPartialEq for WildcardQuery
Auto Trait Implementations
impl RefUnwindSafe for WildcardQuery
impl Send for WildcardQuery
impl Sync for WildcardQuery
impl Unpin for WildcardQuery
impl UnwindSafe for WildcardQuery
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