Struct elasticsearch_dsl::search::queries::term_level::WildcardQuery [−][src]
pub struct WildcardQuery { /* fields omitted */ }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
Method used to rewrite the query. For valid values and more information, see the rewrite parameter.
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.
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.
You can use named queries to track which queries matched
returned documents. If named queries are used, the response
includes a matched_queries property for each hit.
Trait Implementations
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more