pub struct CrossProduct<'a> {
pub goals: Vec<Ident<'a>>,
pub branches: Vec<(Ident<'a>, Branches<'a>)>,
}
Expand description
One part of a Plan
, consisting of a list of goal tasks and a list of branches.
Fields§
§goals: Vec<Ident<'a>>
Task names for the traversal to reach.
branches: Vec<(Ident<'a>, Branches<'a>)>
List of (branchpoint name, branches) pairs used to form traversal.
Trait Implementations§
Source§impl<'a> Debug for CrossProduct<'a>
impl<'a> Debug for CrossProduct<'a>
Source§impl<'a> PartialEq for CrossProduct<'a>
impl<'a> PartialEq for CrossProduct<'a>
impl<'a> Eq for CrossProduct<'a>
impl<'a> StructuralPartialEq for CrossProduct<'a>
Auto Trait Implementations§
impl<'a> Freeze for CrossProduct<'a>
impl<'a> RefUnwindSafe for CrossProduct<'a>
impl<'a> Send for CrossProduct<'a>
impl<'a> Sync for CrossProduct<'a>
impl<'a> Unpin for CrossProduct<'a>
impl<'a> UnwindSafe for CrossProduct<'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