pub struct EpicPlan<'a> {
pub tasks: Vec<&'a Task>,
pub cyclic: Vec<&'a Task>,
}Expand description
Execution plan for an epic’s children.
Fields§
§tasks: Vec<&'a Task>Children in topological execution order.
cyclic: Vec<&'a Task>Children that cannot be ordered because they are in a dependency cycle.
Auto Trait Implementations§
impl<'a> Freeze for EpicPlan<'a>
impl<'a> RefUnwindSafe for EpicPlan<'a>
impl<'a> Send for EpicPlan<'a>
impl<'a> Sync for EpicPlan<'a>
impl<'a> Unpin for EpicPlan<'a>
impl<'a> UnsafeUnpin for EpicPlan<'a>
impl<'a> UnwindSafe for EpicPlan<'a>
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