pub enum Chain {
Yes,
YesIgnoreDeferred,
No,
}
Expand description
Chain systems into dependencies
Variants§
Yes
Run nodes in order. If there are deferred parameters in preceding systems a
apply_deferred
will be added on the edge.
YesIgnoreDeferred
Run nodes in order. This will not add apply_deferred
between nodes.
No
Nodes are allowed to run in any order.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Chain
impl RefUnwindSafe for Chain
impl Send for Chain
impl Sync for Chain
impl Unpin for Chain
impl UnwindSafe for Chain
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