pub struct OpenPointInTime<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Open Point In Time API
Open a point in time that can be used in subsequent searches
Implementations§
Source§impl<'a, 'b, B> OpenPointInTime<'a, 'b, B>where
B: Body,
impl<'a, 'b, B> OpenPointInTime<'a, 'b, B>where
B: Body,
Sourcepub fn new(transport: &'a Transport, parts: OpenPointInTimeParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: OpenPointInTimeParts<'b>) -> Self
Creates a new instance of OpenPointInTime with the specified API parts
Sourcepub fn body<T>(self, body: T) -> OpenPointInTime<'a, 'b, JsonBody<T>>where
T: Serialize,
pub fn body<T>(self, body: T) -> OpenPointInTime<'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 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 keep_alive(self, keep_alive: &'b str) -> Self
pub fn keep_alive(self, keep_alive: &'b str) -> Self
Specific the time to live for the point in time
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.
Trait Implementations§
Source§impl<'a, 'b, B: Clone> Clone for OpenPointInTime<'a, 'b, B>
impl<'a, 'b, B: Clone> Clone for OpenPointInTime<'a, 'b, B>
Source§fn clone(&self) -> OpenPointInTime<'a, 'b, B>
fn clone(&self) -> OpenPointInTime<'a, 'b, B>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more