turbo_tasks/graph/
control_flow.rs

1/// The control flow of visiting an edge during a graph traversal.
2pub enum VisitControlFlow {
3    /// The edge is included, and the traversal should continue on the outgoing edges of the given
4    /// node.
5    Continue,
6    /// The edge is included, but the traversal should skip visiting the edges the given node.
7    Skip,
8    /// The edge is excluded, and the traversal should not continue on the outgoing edges of the
9    /// given node.
10    Exclude,
11}