pub struct CacheParameterGroupsMessage {
pub cache_parameter_groups: Option<Vec<CacheParameterGroup>>,
pub marker: Option<String>,
}
Expand description
Represents the output of a DescribeCacheParameterGroups
operation.
Fields§
§cache_parameter_groups: Option<Vec<CacheParameterGroup>>
A list of cache parameter groups. Each element in the list contains detailed information about one cache parameter group.
marker: Option<String>
Provides an identifier to allow retrieval of paginated results.
Trait Implementations§
Source§impl Clone for CacheParameterGroupsMessage
impl Clone for CacheParameterGroupsMessage
Source§fn clone(&self) -> CacheParameterGroupsMessage
fn clone(&self) -> CacheParameterGroupsMessage
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 CacheParameterGroupsMessage
impl Debug for CacheParameterGroupsMessage
Source§impl Default for CacheParameterGroupsMessage
impl Default for CacheParameterGroupsMessage
Source§fn default() -> CacheParameterGroupsMessage
fn default() -> CacheParameterGroupsMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CacheParameterGroupsMessage
Auto Trait Implementations§
impl Freeze for CacheParameterGroupsMessage
impl RefUnwindSafe for CacheParameterGroupsMessage
impl Send for CacheParameterGroupsMessage
impl Sync for CacheParameterGroupsMessage
impl Unpin for CacheParameterGroupsMessage
impl UnwindSafe for CacheParameterGroupsMessage
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