#[non_exhaustive]pub struct DescribeTaskInput {
pub task_arn: Option<String>,
}
Expand description
DescribeTaskRequest
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_arn: Option<String>
Specifies the Amazon Resource Name (ARN) of the transfer task.
Implementations§
source§impl DescribeTaskInput
impl DescribeTaskInput
sourcepub fn builder() -> DescribeTaskInputBuilder
pub fn builder() -> DescribeTaskInputBuilder
Creates a new builder-style object to manufacture DescribeTaskInput
.
Trait Implementations§
source§impl Clone for DescribeTaskInput
impl Clone for DescribeTaskInput
source§fn clone(&self) -> DescribeTaskInput
fn clone(&self) -> DescribeTaskInput
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 DescribeTaskInput
impl Debug for DescribeTaskInput
source§impl PartialEq for DescribeTaskInput
impl PartialEq for DescribeTaskInput
source§fn eq(&self, other: &DescribeTaskInput) -> bool
fn eq(&self, other: &DescribeTaskInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeTaskInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeTaskInput
impl Send for DescribeTaskInput
impl Sync for DescribeTaskInput
impl Unpin for DescribeTaskInput
impl UnwindSafe for DescribeTaskInput
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