pub struct DescribeSnapshotsListMessage {
pub marker: Option<String>,
pub snapshots: Option<Vec<Snapshot>>,
}
Expand description
Represents the output of a DescribeSnapshots
operation.
Fields§
§marker: Option<String>
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
snapshots: Option<Vec<Snapshot>>
A list of snapshots. Each item in the list contains detailed information about one snapshot.
Trait Implementations§
Source§impl Clone for DescribeSnapshotsListMessage
impl Clone for DescribeSnapshotsListMessage
Source§fn clone(&self) -> DescribeSnapshotsListMessage
fn clone(&self) -> DescribeSnapshotsListMessage
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 DescribeSnapshotsListMessage
impl Debug for DescribeSnapshotsListMessage
Source§impl Default for DescribeSnapshotsListMessage
impl Default for DescribeSnapshotsListMessage
Source§fn default() -> DescribeSnapshotsListMessage
fn default() -> DescribeSnapshotsListMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeSnapshotsListMessage
impl PartialEq for DescribeSnapshotsListMessage
Source§fn eq(&self, other: &DescribeSnapshotsListMessage) -> bool
fn eq(&self, other: &DescribeSnapshotsListMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeSnapshotsListMessage
Auto Trait Implementations§
impl Freeze for DescribeSnapshotsListMessage
impl RefUnwindSafe for DescribeSnapshotsListMessage
impl Send for DescribeSnapshotsListMessage
impl Sync for DescribeSnapshotsListMessage
impl Unpin for DescribeSnapshotsListMessage
impl UnwindSafe for DescribeSnapshotsListMessage
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