pub struct Plan<'a> {
pub name: &'a str,
pub cross_products: Vec<CrossProduct<'a>>,
}
Expand description
A block of one or more CrossProduct
s that specify a traversal through the workflow.
Fields§
§name: &'a str
Plan name
cross_products: Vec<CrossProduct<'a>>
List of contained CrossProduct
s
Trait Implementations§
impl<'a> Eq for Plan<'a>
impl<'a> StructuralPartialEq for Plan<'a>
Auto Trait Implementations§
impl<'a> Freeze for Plan<'a>
impl<'a> RefUnwindSafe for Plan<'a>
impl<'a> Send for Plan<'a>
impl<'a> Sync for Plan<'a>
impl<'a> Unpin for Plan<'a>
impl<'a> UnwindSafe for Plan<'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