Struct aws_sdk_apptest::types::Tn3270StepInput
source · #[non_exhaustive]pub struct Tn3270StepInput {
pub resource: Option<MainframeResourceSummary>,
pub script: Option<ScriptSummary>,
pub export_data_set_names: Option<Vec<String>>,
pub properties: Option<MainframeActionProperties>,
}
Expand description
Specifies a TN3270 step input.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.resource: Option<MainframeResourceSummary>
The resource of the TN3270 step input.
script: Option<ScriptSummary>
The script of the TN3270 step input.
export_data_set_names: Option<Vec<String>>
The export data set names of the TN3270 step input.
properties: Option<MainframeActionProperties>
The properties of the TN3270 step input.
Implementations§
source§impl Tn3270StepInput
impl Tn3270StepInput
sourcepub fn resource(&self) -> Option<&MainframeResourceSummary>
pub fn resource(&self) -> Option<&MainframeResourceSummary>
The resource of the TN3270 step input.
sourcepub fn script(&self) -> Option<&ScriptSummary>
pub fn script(&self) -> Option<&ScriptSummary>
The script of the TN3270 step input.
sourcepub fn export_data_set_names(&self) -> &[String]
pub fn export_data_set_names(&self) -> &[String]
The export data set names of the TN3270 step input.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .export_data_set_names.is_none()
.
sourcepub fn properties(&self) -> Option<&MainframeActionProperties>
pub fn properties(&self) -> Option<&MainframeActionProperties>
The properties of the TN3270 step input.
source§impl Tn3270StepInput
impl Tn3270StepInput
sourcepub fn builder() -> Tn3270StepInputBuilder
pub fn builder() -> Tn3270StepInputBuilder
Creates a new builder-style object to manufacture Tn3270StepInput
.
Trait Implementations§
source§impl Clone for Tn3270StepInput
impl Clone for Tn3270StepInput
source§fn clone(&self) -> Tn3270StepInput
fn clone(&self) -> Tn3270StepInput
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 Tn3270StepInput
impl Debug for Tn3270StepInput
source§impl PartialEq for Tn3270StepInput
impl PartialEq for Tn3270StepInput
source§fn eq(&self, other: &Tn3270StepInput) -> bool
fn eq(&self, other: &Tn3270StepInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Tn3270StepInput
Auto Trait Implementations§
impl Freeze for Tn3270StepInput
impl RefUnwindSafe for Tn3270StepInput
impl Send for Tn3270StepInput
impl Sync for Tn3270StepInput
impl Unpin for Tn3270StepInput
impl UnwindSafe for Tn3270StepInput
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.