Struct aws_sdk_apptest::types::MainframeAction
source · #[non_exhaustive]pub struct MainframeAction {
pub resource: String,
pub action_type: Option<MainframeActionType>,
pub properties: Option<MainframeActionProperties>,
}
Expand description
Specifies the mainframe action.
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: String
The resource of the mainframe action.
action_type: Option<MainframeActionType>
The action type of the mainframe action.
properties: Option<MainframeActionProperties>
The properties of the mainframe action.
Implementations§
source§impl MainframeAction
impl MainframeAction
sourcepub fn action_type(&self) -> Option<&MainframeActionType>
pub fn action_type(&self) -> Option<&MainframeActionType>
The action type of the mainframe action.
sourcepub fn properties(&self) -> Option<&MainframeActionProperties>
pub fn properties(&self) -> Option<&MainframeActionProperties>
The properties of the mainframe action.
source§impl MainframeAction
impl MainframeAction
sourcepub fn builder() -> MainframeActionBuilder
pub fn builder() -> MainframeActionBuilder
Creates a new builder-style object to manufacture MainframeAction
.
Trait Implementations§
source§impl Clone for MainframeAction
impl Clone for MainframeAction
source§fn clone(&self) -> MainframeAction
fn clone(&self) -> MainframeAction
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 MainframeAction
impl Debug for MainframeAction
source§impl PartialEq for MainframeAction
impl PartialEq for MainframeAction
source§fn eq(&self, other: &MainframeAction) -> bool
fn eq(&self, other: &MainframeAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MainframeAction
Auto Trait Implementations§
impl Freeze for MainframeAction
impl RefUnwindSafe for MainframeAction
impl Send for MainframeAction
impl Sync for MainframeAction
impl Unpin for MainframeAction
impl UnwindSafe for MainframeAction
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.