pub type Action = ControlFlow<()>;Expand description
What to do after a Change was recorded.
Use std::ops::ControlFlow::Continue to continue the traversal of changes.
Use std::ops::ControlFlow::Break to stop the traversal of changes, making this the last call to visit(…).
Aliased Type§
pub enum Action {
Continue(()),
Break(()),
}