Struct aws_sdk_swf::model::WorkflowTypeInfo
source · [−]#[non_exhaustive]pub struct WorkflowTypeInfo { /* private fields */ }
Expand description
Contains information about a workflow type.
Implementations
sourceimpl WorkflowTypeInfo
impl WorkflowTypeInfo
sourcepub fn workflow_type(&self) -> Option<&WorkflowType>
pub fn workflow_type(&self) -> Option<&WorkflowType>
The workflow type this information is about.
sourcepub fn status(&self) -> Option<&RegistrationStatus>
pub fn status(&self) -> Option<&RegistrationStatus>
The current status of the workflow type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the type registered through RegisterWorkflowType
.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date when this type was registered.
sourcepub fn deprecation_date(&self) -> Option<&DateTime>
pub fn deprecation_date(&self) -> Option<&DateTime>
If the type is in deprecated state, then it is set to the date when the type was deprecated.
sourceimpl WorkflowTypeInfo
impl WorkflowTypeInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture WorkflowTypeInfo
.
Trait Implementations
sourceimpl Clone for WorkflowTypeInfo
impl Clone for WorkflowTypeInfo
sourcefn clone(&self) -> WorkflowTypeInfo
fn clone(&self) -> WorkflowTypeInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for WorkflowTypeInfo
impl Debug for WorkflowTypeInfo
sourceimpl PartialEq<WorkflowTypeInfo> for WorkflowTypeInfo
impl PartialEq<WorkflowTypeInfo> for WorkflowTypeInfo
sourcefn eq(&self, other: &WorkflowTypeInfo) -> bool
fn eq(&self, other: &WorkflowTypeInfo) -> bool
impl StructuralPartialEq for WorkflowTypeInfo
Auto Trait Implementations
impl RefUnwindSafe for WorkflowTypeInfo
impl Send for WorkflowTypeInfo
impl Sync for WorkflowTypeInfo
impl Unpin for WorkflowTypeInfo
impl UnwindSafe for WorkflowTypeInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more