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