pub struct IndicesGetFieldMapping<'a, 'b> { /* private fields */ }
Expand description
Builder for the Indices Get Field Mapping API
Returns mapping for one or more fields.
Implementations§
Source§impl<'a, 'b> IndicesGetFieldMapping<'a, 'b>
impl<'a, 'b> IndicesGetFieldMapping<'a, 'b>
Sourcepub fn new(
transport: &'a Transport,
parts: IndicesGetFieldMappingParts<'b>,
) -> Self
pub fn new( transport: &'a Transport, parts: IndicesGetFieldMappingParts<'b>, ) -> Self
Creates a new instance of IndicesGetFieldMapping 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 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
Whether specified concrete indices should be ignored when unavailable (missing or closed)
Sourcepub fn include_defaults(self, include_defaults: bool) -> Self
pub fn include_defaults(self, include_defaults: bool) -> Self
Whether the default mapping values should be returned as well
Sourcepub fn include_type_name(self, include_type_name: bool) -> Self
pub fn include_type_name(self, include_type_name: bool) -> Self
Whether a type should be returned in the body of the mappings.
Sourcepub fn local(self, local: bool) -> Self
pub fn local(self, local: bool) -> Self
Return local information, do not retrieve the state from master node (default: false)
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.
Trait Implementations§
Source§impl<'a, 'b> Clone for IndicesGetFieldMapping<'a, 'b>
impl<'a, 'b> Clone for IndicesGetFieldMapping<'a, 'b>
Source§fn clone(&self) -> IndicesGetFieldMapping<'a, 'b>
fn clone(&self) -> IndicesGetFieldMapping<'a, 'b>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more