pub struct WorkflowTypeInfo {
pub creation_date: f64,
pub deprecation_date: Option<f64>,
pub description: Option<String>,
pub status: String,
pub workflow_type: WorkflowType,
}
Expand description
Contains information about a workflow type.
Fields§
§creation_date: f64
The date when this type was registered.
deprecation_date: Option<f64>
If the type is in deprecated state, then it is set to the date when the type was deprecated.
description: Option<String>
The description of the type registered through RegisterWorkflowType.
status: String
The current status of the workflow type.
workflow_type: WorkflowType
The workflow type this information is about.
Trait Implementations§
Source§impl Clone for WorkflowTypeInfo
impl Clone for WorkflowTypeInfo
Source§fn clone(&self) -> WorkflowTypeInfo
fn clone(&self) -> WorkflowTypeInfo
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 WorkflowTypeInfo
impl Debug for WorkflowTypeInfo
Source§impl Default for WorkflowTypeInfo
impl Default for WorkflowTypeInfo
Source§fn default() -> WorkflowTypeInfo
fn default() -> WorkflowTypeInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowTypeInfo
impl<'de> Deserialize<'de> for WorkflowTypeInfo
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 WorkflowTypeInfo
impl PartialEq for WorkflowTypeInfo
impl StructuralPartialEq for WorkflowTypeInfo
Auto Trait Implementations§
impl Freeze for WorkflowTypeInfo
impl RefUnwindSafe for WorkflowTypeInfo
impl Send for WorkflowTypeInfo
impl Sync for WorkflowTypeInfo
impl Unpin for WorkflowTypeInfo
impl UnwindSafe for WorkflowTypeInfo
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