pub struct DescribeImportSnapshotTasksResult {
pub import_snapshot_tasks: Option<Vec<ImportSnapshotTask>>,
pub next_token: Option<String>,
}Fields§
§import_snapshot_tasks: Option<Vec<ImportSnapshotTask>>A list of zero or more import snapshot tasks that are currently active or were completed or canceled in the previous 7 days.
next_token: Option<String>The token to use to get the next page of results. This value is null when there are no more results to return.
Trait Implementations§
Source§impl Clone for DescribeImportSnapshotTasksResult
impl Clone for DescribeImportSnapshotTasksResult
Source§fn clone(&self) -> DescribeImportSnapshotTasksResult
fn clone(&self) -> DescribeImportSnapshotTasksResult
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 Default for DescribeImportSnapshotTasksResult
impl Default for DescribeImportSnapshotTasksResult
Source§fn default() -> DescribeImportSnapshotTasksResult
fn default() -> DescribeImportSnapshotTasksResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeImportSnapshotTasksResult
impl PartialEq for DescribeImportSnapshotTasksResult
Source§fn eq(&self, other: &DescribeImportSnapshotTasksResult) -> bool
fn eq(&self, other: &DescribeImportSnapshotTasksResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeImportSnapshotTasksResult
Auto Trait Implementations§
impl Freeze for DescribeImportSnapshotTasksResult
impl RefUnwindSafe for DescribeImportSnapshotTasksResult
impl Send for DescribeImportSnapshotTasksResult
impl Sync for DescribeImportSnapshotTasksResult
impl Unpin for DescribeImportSnapshotTasksResult
impl UnwindSafe for DescribeImportSnapshotTasksResult
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