Struct aws_sdk_iot::operation::describe_job_execution::builders::DescribeJobExecutionOutputBuilder
source · #[non_exhaustive]pub struct DescribeJobExecutionOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeJobExecutionOutput
.
Implementations§
source§impl DescribeJobExecutionOutputBuilder
impl DescribeJobExecutionOutputBuilder
sourcepub fn execution(self, input: JobExecution) -> Self
pub fn execution(self, input: JobExecution) -> Self
Information about the job execution.
sourcepub fn set_execution(self, input: Option<JobExecution>) -> Self
pub fn set_execution(self, input: Option<JobExecution>) -> Self
Information about the job execution.
sourcepub fn get_execution(&self) -> &Option<JobExecution>
pub fn get_execution(&self) -> &Option<JobExecution>
Information about the job execution.
sourcepub fn build(self) -> DescribeJobExecutionOutput
pub fn build(self) -> DescribeJobExecutionOutput
Consumes the builder and constructs a DescribeJobExecutionOutput
.
Trait Implementations§
source§impl Clone for DescribeJobExecutionOutputBuilder
impl Clone for DescribeJobExecutionOutputBuilder
source§fn clone(&self) -> DescribeJobExecutionOutputBuilder
fn clone(&self) -> DescribeJobExecutionOutputBuilder
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 DescribeJobExecutionOutputBuilder
impl Default for DescribeJobExecutionOutputBuilder
source§fn default() -> DescribeJobExecutionOutputBuilder
fn default() -> DescribeJobExecutionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeJobExecutionOutputBuilder
impl PartialEq for DescribeJobExecutionOutputBuilder
source§fn eq(&self, other: &DescribeJobExecutionOutputBuilder) -> bool
fn eq(&self, other: &DescribeJobExecutionOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeJobExecutionOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeJobExecutionOutputBuilder
impl RefUnwindSafe for DescribeJobExecutionOutputBuilder
impl Send for DescribeJobExecutionOutputBuilder
impl Sync for DescribeJobExecutionOutputBuilder
impl Unpin for DescribeJobExecutionOutputBuilder
impl UnwindSafe for DescribeJobExecutionOutputBuilder
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.