pub struct ClusterVersionsMessage {
pub cluster_versions: Option<Vec<ClusterVersion>>,
pub marker: Option<String>,
}
Expand description
Contains the output from the DescribeClusterVersions action.
Fields§
§cluster_versions: Option<Vec<ClusterVersion>>
A list of Version
elements.
marker: Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
Trait Implementations§
Source§impl Clone for ClusterVersionsMessage
impl Clone for ClusterVersionsMessage
Source§fn clone(&self) -> ClusterVersionsMessage
fn clone(&self) -> ClusterVersionsMessage
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 Debug for ClusterVersionsMessage
impl Debug for ClusterVersionsMessage
Source§impl Default for ClusterVersionsMessage
impl Default for ClusterVersionsMessage
Source§fn default() -> ClusterVersionsMessage
fn default() -> ClusterVersionsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClusterVersionsMessage
impl PartialEq for ClusterVersionsMessage
impl StructuralPartialEq for ClusterVersionsMessage
Auto Trait Implementations§
impl Freeze for ClusterVersionsMessage
impl RefUnwindSafe for ClusterVersionsMessage
impl Send for ClusterVersionsMessage
impl Sync for ClusterVersionsMessage
impl Unpin for ClusterVersionsMessage
impl UnwindSafe for ClusterVersionsMessage
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