#[non_exhaustive]pub struct DeleteDbClusterOutput {
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 DeleteDbClusterOutput
impl DeleteDbClusterOutput
sourcepub fn db_cluster(&self) -> Option<&DbCluster>
pub fn db_cluster(&self) -> Option<&DbCluster>
Detailed information about a cluster.
source§impl DeleteDbClusterOutput
impl DeleteDbClusterOutput
sourcepub fn builder() -> DeleteDbClusterOutputBuilder
pub fn builder() -> DeleteDbClusterOutputBuilder
Creates a new builder-style object to manufacture DeleteDbClusterOutput
.
Trait Implementations§
source§impl Clone for DeleteDbClusterOutput
impl Clone for DeleteDbClusterOutput
source§fn clone(&self) -> DeleteDbClusterOutput
fn clone(&self) -> DeleteDbClusterOutput
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 DeleteDbClusterOutput
impl Debug for DeleteDbClusterOutput
source§impl PartialEq for DeleteDbClusterOutput
impl PartialEq for DeleteDbClusterOutput
source§fn eq(&self, other: &DeleteDbClusterOutput) -> bool
fn eq(&self, other: &DeleteDbClusterOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteDbClusterOutput
impl RequestId for DeleteDbClusterOutput
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 DeleteDbClusterOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteDbClusterOutput
impl Send for DeleteDbClusterOutput
impl Sync for DeleteDbClusterOutput
impl Unpin for DeleteDbClusterOutput
impl UnwindSafe for DeleteDbClusterOutput
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