pub struct Mget<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Mget API
Allows to get multiple documents in one request.
Implementations§
Source§impl<'a, 'b, B> Mget<'a, 'b, B>where
B: Body,
impl<'a, 'b, B> Mget<'a, 'b, B>where
B: Body,
Sourcepub fn new(transport: &'a Transport, parts: MgetParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: MgetParts<'b>) -> Self
Creates a new instance of Mget 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 body<T>(self, body: T) -> Mget<'a, 'b, JsonBody<T>>where
T: Serialize,
pub fn body<T>(self, body: T) -> Mget<'a, 'b, JsonBody<T>>where
T: Serialize,
The body for the API call
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 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 realtime(self, realtime: bool) -> Self
pub fn realtime(self, realtime: bool) -> Self
Specify whether to perform the operation in realtime or search mode
Sourcepub fn refresh(self, refresh: bool) -> Self
pub fn refresh(self, refresh: bool) -> Self
Refresh the shard containing the document before performing the operation
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