Struct aws_sdk_apptest::types::builders::Tn3270Builder
source · #[non_exhaustive]pub struct Tn3270Builder { /* private fields */ }
Expand description
A builder for Tn3270
.
Implementations§
source§impl Tn3270Builder
impl Tn3270Builder
sourcepub fn script(self, input: Script) -> Self
pub fn script(self, input: Script) -> Self
The script of the TN3270 protocol.
This field is required.sourcepub fn set_script(self, input: Option<Script>) -> Self
pub fn set_script(self, input: Option<Script>) -> Self
The script of the TN3270 protocol.
sourcepub fn get_script(&self) -> &Option<Script>
pub fn get_script(&self) -> &Option<Script>
The script of the TN3270 protocol.
sourcepub fn export_data_set_names(self, input: impl Into<String>) -> Self
pub fn export_data_set_names(self, input: impl Into<String>) -> Self
Appends an item to export_data_set_names
.
To override the contents of this collection use set_export_data_set_names
.
The data set names of the TN3270 protocol.
sourcepub fn set_export_data_set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_export_data_set_names(self, input: Option<Vec<String>>) -> Self
The data set names of the TN3270 protocol.
sourcepub fn get_export_data_set_names(&self) -> &Option<Vec<String>>
pub fn get_export_data_set_names(&self) -> &Option<Vec<String>>
The data set names of the TN3270 protocol.
Trait Implementations§
source§impl Clone for Tn3270Builder
impl Clone for Tn3270Builder
source§fn clone(&self) -> Tn3270Builder
fn clone(&self) -> Tn3270Builder
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 Tn3270Builder
impl Debug for Tn3270Builder
source§impl Default for Tn3270Builder
impl Default for Tn3270Builder
source§fn default() -> Tn3270Builder
fn default() -> Tn3270Builder
Returns the “default value” for a type. Read more
source§impl PartialEq for Tn3270Builder
impl PartialEq for Tn3270Builder
source§fn eq(&self, other: &Tn3270Builder) -> bool
fn eq(&self, other: &Tn3270Builder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Tn3270Builder
Auto Trait Implementations§
impl Freeze for Tn3270Builder
impl RefUnwindSafe for Tn3270Builder
impl Send for Tn3270Builder
impl Sync for Tn3270Builder
impl Unpin for Tn3270Builder
impl UnwindSafe for Tn3270Builder
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.