Struct aws_sdk_apptest::types::builders::Tn3270SummaryBuilder
source · #[non_exhaustive]pub struct Tn3270SummaryBuilder { /* private fields */ }
Expand description
A builder for Tn3270Summary
.
Implementations§
source§impl Tn3270SummaryBuilder
impl Tn3270SummaryBuilder
sourcepub fn step_input(self, input: Tn3270StepInput) -> Self
pub fn step_input(self, input: Tn3270StepInput) -> Self
The step input of the TN3270 summary.
This field is required.sourcepub fn set_step_input(self, input: Option<Tn3270StepInput>) -> Self
pub fn set_step_input(self, input: Option<Tn3270StepInput>) -> Self
The step input of the TN3270 summary.
sourcepub fn get_step_input(&self) -> &Option<Tn3270StepInput>
pub fn get_step_input(&self) -> &Option<Tn3270StepInput>
The step input of the TN3270 summary.
sourcepub fn step_output(self, input: Tn3270StepOutput) -> Self
pub fn step_output(self, input: Tn3270StepOutput) -> Self
The step output of the TN3270 summary.
sourcepub fn set_step_output(self, input: Option<Tn3270StepOutput>) -> Self
pub fn set_step_output(self, input: Option<Tn3270StepOutput>) -> Self
The step output of the TN3270 summary.
sourcepub fn get_step_output(&self) -> &Option<Tn3270StepOutput>
pub fn get_step_output(&self) -> &Option<Tn3270StepOutput>
The step output of the TN3270 summary.
sourcepub fn build(self) -> Tn3270Summary
pub fn build(self) -> Tn3270Summary
Consumes the builder and constructs a Tn3270Summary
.
Trait Implementations§
source§impl Clone for Tn3270SummaryBuilder
impl Clone for Tn3270SummaryBuilder
source§fn clone(&self) -> Tn3270SummaryBuilder
fn clone(&self) -> Tn3270SummaryBuilder
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 Tn3270SummaryBuilder
impl Debug for Tn3270SummaryBuilder
source§impl Default for Tn3270SummaryBuilder
impl Default for Tn3270SummaryBuilder
source§fn default() -> Tn3270SummaryBuilder
fn default() -> Tn3270SummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for Tn3270SummaryBuilder
impl PartialEq for Tn3270SummaryBuilder
source§fn eq(&self, other: &Tn3270SummaryBuilder) -> bool
fn eq(&self, other: &Tn3270SummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Tn3270SummaryBuilder
Auto Trait Implementations§
impl Freeze for Tn3270SummaryBuilder
impl RefUnwindSafe for Tn3270SummaryBuilder
impl Send for Tn3270SummaryBuilder
impl Sync for Tn3270SummaryBuilder
impl Unpin for Tn3270SummaryBuilder
impl UnwindSafe for Tn3270SummaryBuilder
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.