#[non_exhaustive]pub struct FailoverDbClusterOutput {
pub db_cluster: Option<DbCluster>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.db_cluster: Option<DbCluster>
Detailed information about a cluster.
Implementations§
source§impl FailoverDbClusterOutput
impl FailoverDbClusterOutput
sourcepub fn db_cluster(&self) -> Option<&DbCluster>
pub fn db_cluster(&self) -> Option<&DbCluster>
Detailed information about a cluster.
source§impl FailoverDbClusterOutput
impl FailoverDbClusterOutput
sourcepub fn builder() -> FailoverDbClusterOutputBuilder
pub fn builder() -> FailoverDbClusterOutputBuilder
Creates a new builder-style object to manufacture FailoverDbClusterOutput
.
Trait Implementations§
source§impl Clone for FailoverDbClusterOutput
impl Clone for FailoverDbClusterOutput
source§fn clone(&self) -> FailoverDbClusterOutput
fn clone(&self) -> FailoverDbClusterOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FailoverDbClusterOutput
impl Debug for FailoverDbClusterOutput
source§impl PartialEq for FailoverDbClusterOutput
impl PartialEq for FailoverDbClusterOutput
source§fn eq(&self, other: &FailoverDbClusterOutput) -> bool
fn eq(&self, other: &FailoverDbClusterOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for FailoverDbClusterOutput
impl RequestId for FailoverDbClusterOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for FailoverDbClusterOutput
Auto Trait Implementations§
impl RefUnwindSafe for FailoverDbClusterOutput
impl Send for FailoverDbClusterOutput
impl Sync for FailoverDbClusterOutput
impl Unpin for FailoverDbClusterOutput
impl UnwindSafe for FailoverDbClusterOutput
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
Mutably borrows from an owned value. Read more