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