pub type TaskObject<TState> = dyn DynTask<TState> + Send + Sync;
Expand description
Type alias for trait objects
This alias simplifies working with dynamic task collections in workflows. Use this when you need to store different task types in the same collection.