Struct wakflo_core::workflow::Workflow
source · pub struct Workflow {Show 13 fields
pub schema_version: WorkflowVersionSchema,
pub id: String,
pub team_id: String,
pub revision: i64,
pub enabled: bool,
pub settings: WorkflowSettings,
pub name: String,
pub display_name: String,
pub description: Option<String>,
pub steps: Vec<TaskStep>,
pub step_edges: Vec<StepEdge>,
pub created_at: DateTime<FixedOffset>,
pub updated_at: DateTime<FixedOffset>,
}Expand description
Workflow
Workflow contract represent an ant workflows that takes in operators and actions to be performed on a dataset
Fields§
§schema_version: WorkflowVersionSchema[WorkflowSchema] workflows types definition
id: String§team_id: String§revision: i64§enabled: bool§settings: WorkflowSettings§name: StringName of the workflows
display_name: StringDisplay name of the workflows
description: Option<String>Description of the workflows
steps: Vec<TaskStep>TaskStep in a workflows
step_edges: Vec<StepEdge>§created_at: DateTime<FixedOffset>Date the entity was created
updated_at: DateTime<FixedOffset>Date the entity was updated
Trait Implementations§
source§impl<'de> Deserialize<'de> for Workflow
impl<'de> Deserialize<'de> for Workflow
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 Workflow
impl PartialEq for Workflow
impl Eq for Workflow
impl StructuralEq for Workflow
impl StructuralPartialEq for Workflow
Auto Trait Implementations§
impl RefUnwindSafe for Workflow
impl Send for Workflow
impl Sync for Workflow
impl Unpin for Workflow
impl UnwindSafe for Workflow
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