Struct aws_sdk_swf::types::WorkflowType
source · #[non_exhaustive]pub struct WorkflowType {
pub name: String,
pub version: String,
}
Expand description
Represents a workflow type.
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.name: String
The name of the workflow type.
The combination of workflow type name and version must be unique with in a domain.
version: String
The version of the workflow type.
The combination of workflow type name and version must be unique with in a domain.
Implementations§
source§impl WorkflowType
impl WorkflowType
source§impl WorkflowType
impl WorkflowType
sourcepub fn builder() -> WorkflowTypeBuilder
pub fn builder() -> WorkflowTypeBuilder
Creates a new builder-style object to manufacture WorkflowType
.
Trait Implementations§
source§impl Clone for WorkflowType
impl Clone for WorkflowType
source§fn clone(&self) -> WorkflowType
fn clone(&self) -> WorkflowType
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 WorkflowType
impl Debug for WorkflowType
source§impl PartialEq for WorkflowType
impl PartialEq for WorkflowType
source§fn eq(&self, other: &WorkflowType) -> bool
fn eq(&self, other: &WorkflowType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WorkflowType
Auto Trait Implementations§
impl RefUnwindSafe for WorkflowType
impl Send for WorkflowType
impl Sync for WorkflowType
impl Unpin for WorkflowType
impl UnwindSafe for WorkflowType
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>
Creates a shared type from an unshared type.