#[non_exhaustive]pub struct GetDataSetImportTaskOutput {
pub task_id: Option<String>,
pub status: Option<DataSetTaskLifecycle>,
pub summary: Option<DataSetImportSummary>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.task_id: Option<String>
The task identifier.
status: Option<DataSetTaskLifecycle>
The status of the task.
summary: Option<DataSetImportSummary>
A summary of the status of the task.
Implementations§
source§impl GetDataSetImportTaskOutput
impl GetDataSetImportTaskOutput
sourcepub fn builder() -> GetDataSetImportTaskOutputBuilder
pub fn builder() -> GetDataSetImportTaskOutputBuilder
Creates a new builder-style object to manufacture GetDataSetImportTaskOutput
.
Trait Implementations§
source§impl Clone for GetDataSetImportTaskOutput
impl Clone for GetDataSetImportTaskOutput
source§fn clone(&self) -> GetDataSetImportTaskOutput
fn clone(&self) -> GetDataSetImportTaskOutput
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 GetDataSetImportTaskOutput
impl Debug for GetDataSetImportTaskOutput
source§impl PartialEq<GetDataSetImportTaskOutput> for GetDataSetImportTaskOutput
impl PartialEq<GetDataSetImportTaskOutput> for GetDataSetImportTaskOutput
source§fn eq(&self, other: &GetDataSetImportTaskOutput) -> bool
fn eq(&self, other: &GetDataSetImportTaskOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetDataSetImportTaskOutput
impl RequestId for GetDataSetImportTaskOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetDataSetImportTaskOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetDataSetImportTaskOutput
impl Send for GetDataSetImportTaskOutput
impl Sync for GetDataSetImportTaskOutput
impl Unpin for GetDataSetImportTaskOutput
impl UnwindSafe for GetDataSetImportTaskOutput
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