Struct elasticsearch::ExistsSource
source · [−]pub struct ExistsSource<'a, 'b> { /* private fields */ }
Expand description
Builder for the Exists Source API
Returns information about whether a document source exists in an index.
Implementations
sourceimpl<'a, 'b> ExistsSource<'a, 'b>
impl<'a, 'b> ExistsSource<'a, 'b>
sourcepub fn new(transport: &'a Transport, parts: ExistsSourceParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: ExistsSourceParts<'b>) -> Self
Creates a new instance of ExistsSource 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 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 version_type(self, version_type: VersionType) -> Self
pub fn version_type(self, version_type: VersionType) -> Self
Specific version type
Trait Implementations
sourceimpl<'a, 'b> Clone for ExistsSource<'a, 'b>
impl<'a, 'b> Clone for ExistsSource<'a, 'b>
sourcefn clone(&self) -> ExistsSource<'a, 'b>
fn clone(&self) -> ExistsSource<'a, 'b>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a, 'b> !RefUnwindSafe for ExistsSource<'a, 'b>
impl<'a, 'b> Send for ExistsSource<'a, 'b>
impl<'a, 'b> Sync for ExistsSource<'a, 'b>
impl<'a, 'b> Unpin for ExistsSource<'a, 'b>
impl<'a, 'b> !UnwindSafe for ExistsSource<'a, '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