Struct aws_sdk_ecs::operation::update_container_instances_state::UpdateContainerInstancesStateOutput
source · #[non_exhaustive]pub struct UpdateContainerInstancesStateOutput {
pub container_instances: Option<Vec<ContainerInstance>>,
pub failures: Option<Vec<Failure>>,
/* 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.container_instances: Option<Vec<ContainerInstance>>
The list of container instances.
failures: Option<Vec<Failure>>
Any failures associated with the call.
Implementations§
source§impl UpdateContainerInstancesStateOutput
impl UpdateContainerInstancesStateOutput
sourcepub fn container_instances(&self) -> Option<&[ContainerInstance]>
pub fn container_instances(&self) -> Option<&[ContainerInstance]>
The list of container instances.
source§impl UpdateContainerInstancesStateOutput
impl UpdateContainerInstancesStateOutput
sourcepub fn builder() -> UpdateContainerInstancesStateOutputBuilder
pub fn builder() -> UpdateContainerInstancesStateOutputBuilder
Creates a new builder-style object to manufacture UpdateContainerInstancesStateOutput
.
Trait Implementations§
source§impl Clone for UpdateContainerInstancesStateOutput
impl Clone for UpdateContainerInstancesStateOutput
source§fn clone(&self) -> UpdateContainerInstancesStateOutput
fn clone(&self) -> UpdateContainerInstancesStateOutput
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 PartialEq<UpdateContainerInstancesStateOutput> for UpdateContainerInstancesStateOutput
impl PartialEq<UpdateContainerInstancesStateOutput> for UpdateContainerInstancesStateOutput
source§fn eq(&self, other: &UpdateContainerInstancesStateOutput) -> bool
fn eq(&self, other: &UpdateContainerInstancesStateOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateContainerInstancesStateOutput
impl RequestId for UpdateContainerInstancesStateOutput
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 UpdateContainerInstancesStateOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateContainerInstancesStateOutput
impl Send for UpdateContainerInstancesStateOutput
impl Sync for UpdateContainerInstancesStateOutput
impl Unpin for UpdateContainerInstancesStateOutput
impl UnwindSafe for UpdateContainerInstancesStateOutput
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