pub struct DescribeExportImageTasksResult {
pub export_image_tasks: Option<Vec<ExportImageTask>>,
pub next_token: Option<String>,
}Fields§
§export_image_tasks: Option<Vec<ExportImageTask>>Information about the export image tasks.
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 DescribeExportImageTasksResult
impl Clone for DescribeExportImageTasksResult
Source§fn clone(&self) -> DescribeExportImageTasksResult
fn clone(&self) -> DescribeExportImageTasksResult
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 DescribeExportImageTasksResult
impl Default for DescribeExportImageTasksResult
Source§fn default() -> DescribeExportImageTasksResult
fn default() -> DescribeExportImageTasksResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeExportImageTasksResult
impl PartialEq for DescribeExportImageTasksResult
Source§fn eq(&self, other: &DescribeExportImageTasksResult) -> bool
fn eq(&self, other: &DescribeExportImageTasksResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeExportImageTasksResult
Auto Trait Implementations§
impl Freeze for DescribeExportImageTasksResult
impl RefUnwindSafe for DescribeExportImageTasksResult
impl Send for DescribeExportImageTasksResult
impl Sync for DescribeExportImageTasksResult
impl Unpin for DescribeExportImageTasksResult
impl UnwindSafe for DescribeExportImageTasksResult
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