#[non_exhaustive]pub struct DescribeTasksOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeTasksOutput
.
Implementations§
source§impl DescribeTasksOutputBuilder
impl DescribeTasksOutputBuilder
sourcepub fn tasks(self, input: Task) -> Self
pub fn tasks(self, input: Task) -> Self
Appends an item to tasks
.
To override the contents of this collection use set_tasks
.
The list of tasks.
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) -> DescribeTasksOutput
pub fn build(self) -> DescribeTasksOutput
Consumes the builder and constructs a DescribeTasksOutput
.
Trait Implementations§
source§impl Clone for DescribeTasksOutputBuilder
impl Clone for DescribeTasksOutputBuilder
source§fn clone(&self) -> DescribeTasksOutputBuilder
fn clone(&self) -> DescribeTasksOutputBuilder
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 DescribeTasksOutputBuilder
impl Debug for DescribeTasksOutputBuilder
source§impl Default for DescribeTasksOutputBuilder
impl Default for DescribeTasksOutputBuilder
source§fn default() -> DescribeTasksOutputBuilder
fn default() -> DescribeTasksOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeTasksOutputBuilder
impl PartialEq for DescribeTasksOutputBuilder
source§fn eq(&self, other: &DescribeTasksOutputBuilder) -> bool
fn eq(&self, other: &DescribeTasksOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeTasksOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeTasksOutputBuilder
impl RefUnwindSafe for DescribeTasksOutputBuilder
impl Send for DescribeTasksOutputBuilder
impl Sync for DescribeTasksOutputBuilder
impl Unpin for DescribeTasksOutputBuilder
impl UnwindSafe for DescribeTasksOutputBuilder
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.