pub type WalkResult = ControlFlow<()>;
Result of a visitor callback: continue walking or stop.
pub enum WalkResult { Continue(()), Break(()), }
Move on to the next phase of the operation as normal.
Exit the operation without running subsequent phases.