pub enum StepType {
Sequential,
Parallel,
Conditional {
branches: Vec<ConditionalBranch>,
},
}Expand description
Type of workflow step
Variants§
Sequential
Sequential step (default)
Parallel
Parallel step (executes concurrently with siblings)
Conditional
Conditional branching with multiple possible paths
Fields
§
branches: Vec<ConditionalBranch>Trait Implementations§
impl StructuralPartialEq for StepType
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