Struct aws_sdk_ecs::operation::stop_task::StopTaskOutput
source · #[non_exhaustive]pub struct StopTaskOutput {
pub task: Option<Task>,
/* 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: Option<Task>
The task that was stopped.
Implementations§
source§impl StopTaskOutput
impl StopTaskOutput
sourcepub fn builder() -> StopTaskOutputBuilder
pub fn builder() -> StopTaskOutputBuilder
Creates a new builder-style object to manufacture StopTaskOutput
.
Trait Implementations§
source§impl Clone for StopTaskOutput
impl Clone for StopTaskOutput
source§fn clone(&self) -> StopTaskOutput
fn clone(&self) -> StopTaskOutput
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 StopTaskOutput
impl Debug for StopTaskOutput
source§impl PartialEq<StopTaskOutput> for StopTaskOutput
impl PartialEq<StopTaskOutput> for StopTaskOutput
source§fn eq(&self, other: &StopTaskOutput) -> bool
fn eq(&self, other: &StopTaskOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for StopTaskOutput
impl RequestId for StopTaskOutput
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 StopTaskOutput
Auto Trait Implementations§
impl RefUnwindSafe for StopTaskOutput
impl Send for StopTaskOutput
impl Sync for StopTaskOutput
impl Unpin for StopTaskOutput
impl UnwindSafe for StopTaskOutput
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