pub struct DBClusterSnapshotMessage {
pub db_cluster_snapshots: Option<Vec<DBClusterSnapshot>>,
pub marker: Option<String>,
}Expand description
Represents the output of DescribeDBClusterSnapshots.
Fields§
§db_cluster_snapshots: Option<Vec<DBClusterSnapshot>>Provides a list of cluster snapshots.
marker: Option<String>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
Trait Implementations§
Source§impl Clone for DBClusterSnapshotMessage
impl Clone for DBClusterSnapshotMessage
Source§fn clone(&self) -> DBClusterSnapshotMessage
fn clone(&self) -> DBClusterSnapshotMessage
Returns a duplicate 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 DBClusterSnapshotMessage
impl Debug for DBClusterSnapshotMessage
Source§impl Default for DBClusterSnapshotMessage
impl Default for DBClusterSnapshotMessage
Source§fn default() -> DBClusterSnapshotMessage
fn default() -> DBClusterSnapshotMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterSnapshotMessage
impl PartialEq for DBClusterSnapshotMessage
impl StructuralPartialEq for DBClusterSnapshotMessage
Auto Trait Implementations§
impl Freeze for DBClusterSnapshotMessage
impl RefUnwindSafe for DBClusterSnapshotMessage
impl Send for DBClusterSnapshotMessage
impl Sync for DBClusterSnapshotMessage
impl Unpin for DBClusterSnapshotMessage
impl UnwindSafe for DBClusterSnapshotMessage
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