pub trait BranchPredicate: Send + Sync + 'static { // Required method fn evaluate(&self, output: &Value) -> bool; }
Pure predicate over the workflow’s running state. Used by Branch and Loop.
Branch
Loop