pub enum StepType {
Agent(AgentStep),
Command(CommandStep),
Condition(ConditionStep),
Parallel(ParallelStep),
Approval(ApprovalStep),
}Expand description
Type of workflow step
Variants§
Agent(AgentStep)
Agent execution step
Command(CommandStep)
Command execution step
Condition(ConditionStep)
Conditional branching step
Parallel(ParallelStep)
Parallel execution step
Approval(ApprovalStep)
Approval gate step
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepType
impl<'de> Deserialize<'de> for StepType
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 StepType
impl RefUnwindSafe for StepType
impl Send for StepType
impl Sync for StepType
impl Unpin for StepType
impl UnwindSafe for StepType
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