pub struct ReservedCacheNodesOfferingMessage {
pub marker: Option<String>,
pub reserved_cache_nodes_offerings: Option<Vec<ReservedCacheNodesOffering>>,
}
Expand description
Represents the output of a DescribeReservedCacheNodesOfferings
operation.
Fields§
§marker: Option<String>
Provides an identifier to allow retrieval of paginated results.
reserved_cache_nodes_offerings: Option<Vec<ReservedCacheNodesOffering>>
A list of reserved cache node offerings. Each element in the list contains detailed information about one offering.
Trait Implementations§
Source§impl Clone for ReservedCacheNodesOfferingMessage
impl Clone for ReservedCacheNodesOfferingMessage
Source§fn clone(&self) -> ReservedCacheNodesOfferingMessage
fn clone(&self) -> ReservedCacheNodesOfferingMessage
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 Default for ReservedCacheNodesOfferingMessage
impl Default for ReservedCacheNodesOfferingMessage
Source§fn default() -> ReservedCacheNodesOfferingMessage
fn default() -> ReservedCacheNodesOfferingMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReservedCacheNodesOfferingMessage
impl PartialEq for ReservedCacheNodesOfferingMessage
Source§fn eq(&self, other: &ReservedCacheNodesOfferingMessage) -> bool
fn eq(&self, other: &ReservedCacheNodesOfferingMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReservedCacheNodesOfferingMessage
Auto Trait Implementations§
impl Freeze for ReservedCacheNodesOfferingMessage
impl RefUnwindSafe for ReservedCacheNodesOfferingMessage
impl Send for ReservedCacheNodesOfferingMessage
impl Sync for ReservedCacheNodesOfferingMessage
impl Unpin for ReservedCacheNodesOfferingMessage
impl UnwindSafe for ReservedCacheNodesOfferingMessage
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