#[non_exhaustive]pub struct DescribeTaskSetsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeTaskSetsOutput
.
Implementations§
source§impl DescribeTaskSetsOutputBuilder
impl DescribeTaskSetsOutputBuilder
sourcepub fn task_sets(self, input: TaskSet) -> Self
pub fn task_sets(self, input: TaskSet) -> Self
Appends an item to task_sets
.
To override the contents of this collection use set_task_sets
.
The list of task sets described.
sourcepub fn set_task_sets(self, input: Option<Vec<TaskSet>>) -> Self
pub fn set_task_sets(self, input: Option<Vec<TaskSet>>) -> Self
The list of task sets described.
sourcepub fn get_task_sets(&self) -> &Option<Vec<TaskSet>>
pub fn get_task_sets(&self) -> &Option<Vec<TaskSet>>
The list of task sets described.
sourcepub fn failures(self, input: Failure) -> Self
pub fn failures(self, input: Failure) -> Self
Appends an item to failures
.
To override the contents of this collection use set_failures
.
Any failures associated with the call.
sourcepub fn set_failures(self, input: Option<Vec<Failure>>) -> Self
pub fn set_failures(self, input: Option<Vec<Failure>>) -> Self
Any failures associated with the call.
sourcepub fn get_failures(&self) -> &Option<Vec<Failure>>
pub fn get_failures(&self) -> &Option<Vec<Failure>>
Any failures associated with the call.
sourcepub fn build(self) -> DescribeTaskSetsOutput
pub fn build(self) -> DescribeTaskSetsOutput
Consumes the builder and constructs a DescribeTaskSetsOutput
.
Trait Implementations§
source§impl Clone for DescribeTaskSetsOutputBuilder
impl Clone for DescribeTaskSetsOutputBuilder
source§fn clone(&self) -> DescribeTaskSetsOutputBuilder
fn clone(&self) -> DescribeTaskSetsOutputBuilder
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 Default for DescribeTaskSetsOutputBuilder
impl Default for DescribeTaskSetsOutputBuilder
source§fn default() -> DescribeTaskSetsOutputBuilder
fn default() -> DescribeTaskSetsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeTaskSetsOutputBuilder
impl PartialEq for DescribeTaskSetsOutputBuilder
source§fn eq(&self, other: &DescribeTaskSetsOutputBuilder) -> bool
fn eq(&self, other: &DescribeTaskSetsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeTaskSetsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeTaskSetsOutputBuilder
impl RefUnwindSafe for DescribeTaskSetsOutputBuilder
impl Send for DescribeTaskSetsOutputBuilder
impl Sync for DescribeTaskSetsOutputBuilder
impl Unpin for DescribeTaskSetsOutputBuilder
impl UnwindSafe for DescribeTaskSetsOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.