pub struct DescribeStoreImageTasksResult {
pub next_token: Option<String>,
pub store_image_task_results: Option<Vec<StoreImageTaskResult>>,
}
Fields§
§next_token: Option<String>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
store_image_task_results: Option<Vec<StoreImageTaskResult>>
The information about the AMI store tasks.
Trait Implementations§
Source§impl Clone for DescribeStoreImageTasksResult
impl Clone for DescribeStoreImageTasksResult
Source§fn clone(&self) -> DescribeStoreImageTasksResult
fn clone(&self) -> DescribeStoreImageTasksResult
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 DescribeStoreImageTasksResult
impl Default for DescribeStoreImageTasksResult
Source§fn default() -> DescribeStoreImageTasksResult
fn default() -> DescribeStoreImageTasksResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStoreImageTasksResult
impl PartialEq for DescribeStoreImageTasksResult
Source§fn eq(&self, other: &DescribeStoreImageTasksResult) -> bool
fn eq(&self, other: &DescribeStoreImageTasksResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeStoreImageTasksResult
Auto Trait Implementations§
impl Freeze for DescribeStoreImageTasksResult
impl RefUnwindSafe for DescribeStoreImageTasksResult
impl Send for DescribeStoreImageTasksResult
impl Sync for DescribeStoreImageTasksResult
impl Unpin for DescribeStoreImageTasksResult
impl UnwindSafe for DescribeStoreImageTasksResult
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