pub struct Explain<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Explain API
Returns information about why a specific matches (or doesn’t match) a query.
Implementations§
Source§impl<'a, 'b, B> Explain<'a, 'b, B>where
B: Body,
impl<'a, 'b, B> Explain<'a, 'b, B>where
B: Body,
Sourcepub fn new(transport: &'a Transport, parts: ExplainParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: ExplainParts<'b>) -> Self
Creates a new instance of Explain with the specified API parts
Sourcepub fn _source(self, _source: &'b [&'b str]) -> Self
pub fn _source(self, _source: &'b [&'b str]) -> Self
True or false to return the _source field or not, or a list of fields to return
Sourcepub fn _source_excludes(self, _source_excludes: &'b [&'b str]) -> Self
pub fn _source_excludes(self, _source_excludes: &'b [&'b str]) -> Self
A list of fields to exclude from the returned _source field
Sourcepub fn _source_includes(self, _source_includes: &'b [&'b str]) -> Self
pub fn _source_includes(self, _source_includes: &'b [&'b str]) -> Self
A list of fields to extract and return from the _source field
Sourcepub fn analyze_wildcard(self, analyze_wildcard: bool) -> Self
pub fn analyze_wildcard(self, analyze_wildcard: bool) -> Self
Specify whether wildcards and prefix queries in the query string query should be analyzed (default: false)
Sourcepub fn body<T>(self, body: T) -> Explain<'a, 'b, JsonBody<T>>where
T: Serialize,
pub fn body<T>(self, body: T) -> Explain<'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 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 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 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 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 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 stored_fields(self, stored_fields: &'b [&'b str]) -> Self
pub fn stored_fields(self, stored_fields: &'b [&'b str]) -> Self
A comma-separated list of stored fields to return in the response
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, B> Freeze for Explain<'a, 'b, B>where
B: Freeze,
impl<'a, 'b, B> !RefUnwindSafe for Explain<'a, 'b, B>
impl<'a, 'b, B> Send for Explain<'a, 'b, B>where
B: Send,
impl<'a, 'b, B> Sync for Explain<'a, 'b, B>where
B: Sync,
impl<'a, 'b, B> Unpin for Explain<'a, 'b, B>where
B: Unpin,
impl<'a, 'b, B> !UnwindSafe for Explain<'a, 'b, B>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more