#[non_exhaustive]pub struct CreateDbSnapshotOutput {
pub db_snapshot: Option<DbSnapshot>,
/* 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_snapshot: Option<DbSnapshot>Contains the details of an Amazon RDS DB snapshot.
This data type is used as a response element in the DescribeDBSnapshots action.
Implementations§
source§impl CreateDbSnapshotOutput
impl CreateDbSnapshotOutput
sourcepub fn db_snapshot(&self) -> Option<&DbSnapshot>
pub fn db_snapshot(&self) -> Option<&DbSnapshot>
Contains the details of an Amazon RDS DB snapshot.
This data type is used as a response element in the DescribeDBSnapshots action.
source§impl CreateDbSnapshotOutput
impl CreateDbSnapshotOutput
sourcepub fn builder() -> CreateDbSnapshotOutputBuilder
pub fn builder() -> CreateDbSnapshotOutputBuilder
Creates a new builder-style object to manufacture CreateDbSnapshotOutput.
Trait Implementations§
source§impl Clone for CreateDbSnapshotOutput
impl Clone for CreateDbSnapshotOutput
source§fn clone(&self) -> CreateDbSnapshotOutput
fn clone(&self) -> CreateDbSnapshotOutput
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 CreateDbSnapshotOutput
impl Debug for CreateDbSnapshotOutput
source§impl PartialEq for CreateDbSnapshotOutput
impl PartialEq for CreateDbSnapshotOutput
source§fn eq(&self, other: &CreateDbSnapshotOutput) -> bool
fn eq(&self, other: &CreateDbSnapshotOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateDbSnapshotOutput
impl RequestId for CreateDbSnapshotOutput
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 CreateDbSnapshotOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDbSnapshotOutput
impl Send for CreateDbSnapshotOutput
impl Sync for CreateDbSnapshotOutput
impl Unpin for CreateDbSnapshotOutput
impl UnwindSafe for CreateDbSnapshotOutput
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.