pub struct SnapshotMessage {
pub marker: Option<String>,
pub snapshots: Option<Vec<Snapshot>>,
}Expand description
Contains the output from the DescribeClusterSnapshots action.
Fields§
§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.
snapshots: Option<Vec<Snapshot>>A list of Snapshot instances.
Trait Implementations§
Source§impl Clone for SnapshotMessage
impl Clone for SnapshotMessage
Source§fn clone(&self) -> SnapshotMessage
fn clone(&self) -> SnapshotMessage
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 SnapshotMessage
impl Debug for SnapshotMessage
Source§impl Default for SnapshotMessage
impl Default for SnapshotMessage
Source§fn default() -> SnapshotMessage
fn default() -> SnapshotMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for SnapshotMessage
impl PartialEq for SnapshotMessage
impl StructuralPartialEq for SnapshotMessage
Auto Trait Implementations§
impl Freeze for SnapshotMessage
impl RefUnwindSafe for SnapshotMessage
impl Send for SnapshotMessage
impl Sync for SnapshotMessage
impl Unpin for SnapshotMessage
impl UnwindSafe for SnapshotMessage
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