Struct elasticsearch::Count
source · [−]pub struct Count<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Count API
Returns number of documents matching a query.
Implementations
sourceimpl<'a, 'b, B> Count<'a, 'b, B> where
B: Body,
impl<'a, 'b, B> Count<'a, 'b, B> where
B: Body,
sourcepub fn new(transport: &'a Transport, parts: CountParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: CountParts<'b>) -> Self
Creates a new instance of Count with the specified API parts
sourcepub fn allow_no_indices(self, allow_no_indices: bool) -> Self
pub fn allow_no_indices(self, allow_no_indices: bool) -> Self
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes _all
string or when no indices have been specified)
sourcepub fn analyze_wildcard(self, analyze_wildcard: bool) -> Self
pub fn analyze_wildcard(self, analyze_wildcard: bool) -> Self
Specify whether wildcard and prefix queries should be analyzed (default: false)
sourcepub fn body<T>(self, body: T) -> Count<'a, 'b, JsonBody<T>> where
T: Serialize,
pub fn body<T>(self, body: T) -> Count<'a, 'b, JsonBody<T>> where
T: Serialize,
The body for the API call
sourcepub fn default_operator(self, default_operator: DefaultOperator) -> Self
pub fn default_operator(self, default_operator: DefaultOperator) -> Self
The default operator for query string query (AND or OR)
sourcepub fn df(self, df: &'b str) -> Self
pub fn df(self, df: &'b str) -> Self
The field to use as default where no field prefix is given in the query string
sourcepub fn error_trace(self, error_trace: bool) -> Self
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
sourcepub fn expand_wildcards(self, expand_wildcards: &'b [ExpandWildcards]) -> Self
pub fn expand_wildcards(self, expand_wildcards: &'b [ExpandWildcards]) -> Self
Whether to expand wildcard expression to concrete indices that are open, closed or both.
sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
sourcepub fn ignore_throttled(self, ignore_throttled: bool) -> Self
pub fn ignore_throttled(self, ignore_throttled: bool) -> Self
Whether specified concrete, expanded or aliased indices should be ignored when throttled
Whether specified concrete indices should be ignored when unavailable (missing or closed)
sourcepub fn lenient(self, lenient: bool) -> Self
pub fn lenient(self, lenient: bool) -> Self
Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
sourcepub fn min_score(self, min_score: i64) -> Self
pub fn min_score(self, min_score: i64) -> Self
Include only documents with a specific _score
value in the result
sourcepub fn preference(self, preference: &'b str) -> Self
pub fn preference(self, preference: &'b str) -> Self
Specify the node or shard the operation should be performed on (default: random)
sourcepub fn request_timeout(self, timeout: Duration) -> Self
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
sourcepub fn routing(self, routing: &'b [&'b str]) -> Self
pub fn routing(self, routing: &'b [&'b str]) -> Self
A comma-separated list of specific routing values
sourcepub fn source(self, source: &'b str) -> Self
pub fn source(self, source: &'b str) -> Self
The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
sourcepub fn terminate_after(self, terminate_after: i64) -> Self
pub fn terminate_after(self, terminate_after: i64) -> Self
The maximum count for each shard, upon reaching which the query execution will terminate early
Trait Implementations
Auto Trait Implementations
impl<'a, 'b, B> !RefUnwindSafe for Count<'a, 'b, B>
impl<'a, 'b, B> Send for Count<'a, 'b, B> where
B: Send,
impl<'a, 'b, B> Sync for Count<'a, 'b, B> where
B: Sync,
impl<'a, 'b, B> Unpin for Count<'a, 'b, B> where
B: Unpin,
impl<'a, 'b, B> !UnwindSafe for Count<'a, 'b, B>
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more