#[non_exhaustive]pub struct CrossClusterSearchConnectionPropertiesBuilder { /* private fields */ }
Expand description
A builder for CrossClusterSearchConnectionProperties
.
Implementations§
source§impl CrossClusterSearchConnectionPropertiesBuilder
impl CrossClusterSearchConnectionPropertiesBuilder
The status of the SkipUnavailable
setting for the outbound connection. This feature allows you to specify some clusters as optional and ensure that your cross-cluster queries return partial results despite failures on one or more remote clusters.
The status of the SkipUnavailable
setting for the outbound connection. This feature allows you to specify some clusters as optional and ensure that your cross-cluster queries return partial results despite failures on one or more remote clusters.
The status of the SkipUnavailable
setting for the outbound connection. This feature allows you to specify some clusters as optional and ensure that your cross-cluster queries return partial results despite failures on one or more remote clusters.
sourcepub fn build(self) -> CrossClusterSearchConnectionProperties
pub fn build(self) -> CrossClusterSearchConnectionProperties
Consumes the builder and constructs a CrossClusterSearchConnectionProperties
.
Trait Implementations§
source§impl Clone for CrossClusterSearchConnectionPropertiesBuilder
impl Clone for CrossClusterSearchConnectionPropertiesBuilder
source§fn clone(&self) -> CrossClusterSearchConnectionPropertiesBuilder
fn clone(&self) -> CrossClusterSearchConnectionPropertiesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CrossClusterSearchConnectionPropertiesBuilder
impl Default for CrossClusterSearchConnectionPropertiesBuilder
source§fn default() -> CrossClusterSearchConnectionPropertiesBuilder
fn default() -> CrossClusterSearchConnectionPropertiesBuilder
source§impl PartialEq for CrossClusterSearchConnectionPropertiesBuilder
impl PartialEq for CrossClusterSearchConnectionPropertiesBuilder
source§fn eq(&self, other: &CrossClusterSearchConnectionPropertiesBuilder) -> bool
fn eq(&self, other: &CrossClusterSearchConnectionPropertiesBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CrossClusterSearchConnectionPropertiesBuilder
Auto Trait Implementations§
impl Freeze for CrossClusterSearchConnectionPropertiesBuilder
impl RefUnwindSafe for CrossClusterSearchConnectionPropertiesBuilder
impl Send for CrossClusterSearchConnectionPropertiesBuilder
impl Sync for CrossClusterSearchConnectionPropertiesBuilder
impl Unpin for CrossClusterSearchConnectionPropertiesBuilder
impl UnwindSafe for CrossClusterSearchConnectionPropertiesBuilder
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> 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