pub struct WorkflowTypeDetail {
pub configuration: WorkflowTypeConfiguration,
pub type_info: WorkflowTypeInfo,
}
Expand description
Contains details about a workflow type.
Fields§
§configuration: WorkflowTypeConfiguration
Configuration settings of the workflow type registered through RegisterWorkflowType
type_info: WorkflowTypeInfo
General information about the workflow type.
The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.
-
REGISTERED
– The type is registered and available. Workers supporting this type should be running. -
DEPRECATED
– The type was deprecated using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.
Trait Implementations§
Source§impl Clone for WorkflowTypeDetail
impl Clone for WorkflowTypeDetail
Source§fn clone(&self) -> WorkflowTypeDetail
fn clone(&self) -> WorkflowTypeDetail
Returns a duplicate 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 WorkflowTypeDetail
impl Debug for WorkflowTypeDetail
Source§impl Default for WorkflowTypeDetail
impl Default for WorkflowTypeDetail
Source§fn default() -> WorkflowTypeDetail
fn default() -> WorkflowTypeDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowTypeDetail
impl<'de> Deserialize<'de> for WorkflowTypeDetail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WorkflowTypeDetail
impl PartialEq for WorkflowTypeDetail
impl StructuralPartialEq for WorkflowTypeDetail
Auto Trait Implementations§
impl Freeze for WorkflowTypeDetail
impl RefUnwindSafe for WorkflowTypeDetail
impl Send for WorkflowTypeDetail
impl Sync for WorkflowTypeDetail
impl Unpin for WorkflowTypeDetail
impl UnwindSafe for WorkflowTypeDetail
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