pub struct DBClusterMessage {
pub db_clusters: Option<Vec<DBCluster>>,
pub marker: Option<String>,
}
Expand description
Represents the output of DescribeDBClusters.
Fields§
§db_clusters: Option<Vec<DBCluster>>
A list of clusters.
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 DBClusterMessage
impl Clone for DBClusterMessage
Source§fn clone(&self) -> DBClusterMessage
fn clone(&self) -> DBClusterMessage
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 DBClusterMessage
impl Debug for DBClusterMessage
Source§impl Default for DBClusterMessage
impl Default for DBClusterMessage
Source§fn default() -> DBClusterMessage
fn default() -> DBClusterMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterMessage
impl PartialEq for DBClusterMessage
impl StructuralPartialEq for DBClusterMessage
Auto Trait Implementations§
impl Freeze for DBClusterMessage
impl RefUnwindSafe for DBClusterMessage
impl Send for DBClusterMessage
impl Sync for DBClusterMessage
impl Unpin for DBClusterMessage
impl UnwindSafe for DBClusterMessage
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