pub type ControlFlow<T> = ControlFlow<(), T>;Expand description
Return type for visitor methods that may either continue with a child visitor or pause parsing. See the module-level docs for the control-flow model.
Aliased Type§
pub enum ControlFlow<T> {
Continue(T),
Break(()),
}