pub struct ExecutionPlan { /* private fields */ }Expand description
A validated execution plan with tasks grouped into waves.
Wave N contains only tasks whose dependencies all appear in waves < N. Tasks within the same wave are independent and could be executed in parallel (though the current executor runs them sequentially).
Implementations§
Source§impl ExecutionPlan
impl ExecutionPlan
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecutionPlan
impl !RefUnwindSafe for ExecutionPlan
impl !Send for ExecutionPlan
impl !Sync for ExecutionPlan
impl Unpin for ExecutionPlan
impl !UnwindSafe for ExecutionPlan
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