pub struct WorkflowDefinition {Show 17 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub group_name: Option<String>,
pub description: Option<String>,
pub type: Option<WorkflowType>,
pub trigger: Option<WorkflowTrigger>,
pub trigger_type: Option<WorkflowTriggerType>,
pub conditions: Option<Value>,
pub enabled: Option<bool>,
pub activities: Option<Value>,
pub sort_order: Option<String>,
pub last_executed_at: Option<DateTime<Utc>>,
pub context_view_type: Option<ContextViewType>,
pub user_context_view_type: Option<UserContextViewType>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§name: Option<String>§group_name: Option<String>§description: Option<String>§type: Option<WorkflowType>§trigger: Option<WorkflowTrigger>§trigger_type: Option<WorkflowTriggerType>§conditions: Option<Value>§enabled: Option<bool>§activities: Option<Value>§sort_order: Option<String>§last_executed_at: Option<DateTime<Utc>>§context_view_type: Option<ContextViewType>§user_context_view_type: Option<UserContextViewType>Trait Implementations§
Source§impl Clone for WorkflowDefinition
impl Clone for WorkflowDefinition
Source§fn clone(&self) -> WorkflowDefinition
fn clone(&self) -> WorkflowDefinition
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 WorkflowDefinition
impl Debug for WorkflowDefinition
Source§impl Default for WorkflowDefinition
impl Default for WorkflowDefinition
Source§fn default() -> WorkflowDefinition
fn default() -> WorkflowDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowDefinitionwhere
WorkflowDefinition: Default,
impl<'de> Deserialize<'de> for WorkflowDefinitionwhere
WorkflowDefinition: Default,
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
Auto Trait Implementations§
impl Freeze for WorkflowDefinition
impl RefUnwindSafe for WorkflowDefinition
impl Send for WorkflowDefinition
impl Sync for WorkflowDefinition
impl Unpin for WorkflowDefinition
impl UnwindSafe for WorkflowDefinition
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