pub type ParallelGroups<T> = Vec<Vec<GraphNode<T>>>;Expand description
Groups of tasks that can execute in parallel.
Each inner vector contains tasks that have no dependencies on each other and can safely execute concurrently. The outer vector is ordered by dependency level - all tasks in group N must complete before tasks in group N+1 can start.
Aliased Typeยง
pub struct ParallelGroups<T> { /* private fields */ }