pub struct DBClusterParameterGroupsMessage {
pub db_cluster_parameter_groups: Option<Vec<DBClusterParameterGroup>>,
pub marker: Option<String>,
}
Expand description
Represents the output of DBClusterParameterGroups.
Fields§
§db_cluster_parameter_groups: Option<Vec<DBClusterParameterGroup>>
A list of cluster parameter groups.
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 DBClusterParameterGroupsMessage
impl Clone for DBClusterParameterGroupsMessage
Source§fn clone(&self) -> DBClusterParameterGroupsMessage
fn clone(&self) -> DBClusterParameterGroupsMessage
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 Default for DBClusterParameterGroupsMessage
impl Default for DBClusterParameterGroupsMessage
Source§fn default() -> DBClusterParameterGroupsMessage
fn default() -> DBClusterParameterGroupsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterParameterGroupsMessage
impl PartialEq for DBClusterParameterGroupsMessage
Source§fn eq(&self, other: &DBClusterParameterGroupsMessage) -> bool
fn eq(&self, other: &DBClusterParameterGroupsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DBClusterParameterGroupsMessage
Auto Trait Implementations§
impl Freeze for DBClusterParameterGroupsMessage
impl RefUnwindSafe for DBClusterParameterGroupsMessage
impl Send for DBClusterParameterGroupsMessage
impl Sync for DBClusterParameterGroupsMessage
impl Unpin for DBClusterParameterGroupsMessage
impl UnwindSafe for DBClusterParameterGroupsMessage
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