#[non_exhaustive]pub struct InboundCrossClusterSearchConnectionStatus { /* private fields */ }
Expand description
Specifies the coonection status of an inbound cross-cluster search connection.
Implementations
sourceimpl InboundCrossClusterSearchConnectionStatus
impl InboundCrossClusterSearchConnectionStatus
sourcepub fn status_code(
&self
) -> Option<&InboundCrossClusterSearchConnectionStatusCode>
pub fn status_code(
&self
) -> Option<&InboundCrossClusterSearchConnectionStatusCode>
The state code for inbound connection. This can be one of the following:
- PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
- APPROVED: Inbound connection is pending acceptance by destination domain owner.
- REJECTING: Inbound connection rejection is in process.
- REJECTED: Inbound connection is rejected.
- DELETING: Inbound connection deletion is in progress.
- DELETED: Inbound connection is deleted and cannot be used further.
sourceimpl InboundCrossClusterSearchConnectionStatus
impl InboundCrossClusterSearchConnectionStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InboundCrossClusterSearchConnectionStatus
.
Trait Implementations
sourceimpl Clone for InboundCrossClusterSearchConnectionStatus
impl Clone for InboundCrossClusterSearchConnectionStatus
sourcefn clone(&self) -> InboundCrossClusterSearchConnectionStatus
fn clone(&self) -> InboundCrossClusterSearchConnectionStatus
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 moresourceimpl PartialEq<InboundCrossClusterSearchConnectionStatus> for InboundCrossClusterSearchConnectionStatus
impl PartialEq<InboundCrossClusterSearchConnectionStatus> for InboundCrossClusterSearchConnectionStatus
sourcefn eq(&self, other: &InboundCrossClusterSearchConnectionStatus) -> bool
fn eq(&self, other: &InboundCrossClusterSearchConnectionStatus) -> bool
impl StructuralPartialEq for InboundCrossClusterSearchConnectionStatus
Auto Trait Implementations
impl RefUnwindSafe for InboundCrossClusterSearchConnectionStatus
impl Send for InboundCrossClusterSearchConnectionStatus
impl Sync for InboundCrossClusterSearchConnectionStatus
impl Unpin for InboundCrossClusterSearchConnectionStatus
impl UnwindSafe for InboundCrossClusterSearchConnectionStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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